summaryrefslogtreecommitdiff
path: root/editors/openoffice.org-vcltesttool/files
diff options
context:
space:
mode:
authorJung-uk Kim <jkim@FreeBSD.org>2007-07-17 16:06:33 +0000
committerJung-uk Kim <jkim@FreeBSD.org>2007-07-17 16:06:33 +0000
commit4cd7f2ba4f28ff74ce1b1d7401ca352bf8431087 (patch)
tree5a1c081f1c0791d455bba983d0824913a4503956 /editors/openoffice.org-vcltesttool/files
parent- Update to 0.08 (diff)
Fix vcl build on amd64.
Approved by: maho (amd64 porting blanket)
Notes
Notes: svn path=/head/; revision=195808
Diffstat (limited to 'editors/openoffice.org-vcltesttool/files')
-rw-r--r--editors/openoffice.org-vcltesttool/files/patch-i7949911
1 files changed, 11 insertions, 0 deletions
diff --git a/editors/openoffice.org-vcltesttool/files/patch-i79499 b/editors/openoffice.org-vcltesttool/files/patch-i79499
new file mode 100644
index 000000000000..f6cb7b03c62c
--- /dev/null
+++ b/editors/openoffice.org-vcltesttool/files/patch-i79499
@@ -0,0 +1,11 @@
+--- vcl/source/window/winproc.cxx 5 Jul 2007 08:44:18 -0000 1.114
++++ vcl/source/window/winproc.cxx 12 Jul 2007 13:32:22 -0000 1.115
+@@ -2534,7 +2534,7 @@
+ break;
+ case SALEVENT_SHOWDIALOG:
+ {
+- int nDialogID = reinterpret_cast<int>(pEvent);
++ int nDialogID = static_cast<int>(reinterpret_cast<sal_IntPtr>(pEvent));
+ nRet = ImplHandleShowDialog( pWindow, nDialogID );
+ }
+ break;