diff options
author | Jung-uk Kim <jkim@FreeBSD.org> | 2007-07-17 16:06:33 +0000 |
---|---|---|
committer | Jung-uk Kim <jkim@FreeBSD.org> | 2007-07-17 16:06:33 +0000 |
commit | 4cd7f2ba4f28ff74ce1b1d7401ca352bf8431087 (patch) | |
tree | 5a1c081f1c0791d455bba983d0824913a4503956 /editors/openoffice-3-devel | |
parent | a9e2cb7ca857d7fa32976c756cf469f13941d9e4 (diff) |
Notes
Diffstat (limited to 'editors/openoffice-3-devel')
-rw-r--r-- | editors/openoffice-3-devel/files/patch-i79499 | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/editors/openoffice-3-devel/files/patch-i79499 b/editors/openoffice-3-devel/files/patch-i79499 new file mode 100644 index 000000000000..f6cb7b03c62c --- /dev/null +++ b/editors/openoffice-3-devel/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; |