summaryrefslogtreecommitdiffstats
path: root/src/ui/dialog
diff options
context:
space:
mode:
authorKrzysztof Kosi??ski <tweenk.pl@gmail.com>2010-02-28 17:38:28 +0000
committerKrzysztof KosiƄski <tweenk.pl@gmail.com>2010-02-28 17:38:28 +0000
commit0dff587c9dd7ac0b02fc93f58883e24cd2d4e92e (patch)
treed8e467082d6db3073d3a822d78d0628dc82a92e4 /src/ui/dialog
parentPen context, paraxial mode: don't add a L-shaped path to close the shape when... (diff)
downloadinkscape-0dff587c9dd7ac0b02fc93f58883e24cd2d4e92e.tar.gz
inkscape-0dff587c9dd7ac0b02fc93f58883e24cd2d4e92e.zip
Compilation fixes for Windows 64-bit by Fridrich
(bzr r9118)
Diffstat (limited to 'src/ui/dialog')
-rw-r--r--src/ui/dialog/filedialogimpl-win32.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ui/dialog/filedialogimpl-win32.cpp b/src/ui/dialog/filedialogimpl-win32.cpp
index c3889a62d..3cdd61184 100644
--- a/src/ui/dialog/filedialogimpl-win32.cpp
+++ b/src/ui/dialog/filedialogimpl-win32.cpp
@@ -454,15 +454,15 @@ UINT_PTR CALLBACK FileOpenDialogImplWin32::GetOpenFileName_hookproc(
pImpl = (FileOpenDialogImplWin32*)ofn->lCustData;
// Subclass the parent
- pImpl->_base_window_proc = (WNDPROC)GetWindowLongPtr(hParentWnd, GWL_WNDPROC);
- SetWindowLongPtr(hParentWnd, GWL_WNDPROC, (LONG_PTR)file_dialog_subclass_proc);
+ pImpl->_base_window_proc = (WNDPROC)GetWindowLongPtr(hParentWnd, GWLP_WNDPROC);
+ SetWindowLongPtr(hParentWnd, GWLP_WNDPROC, (LONG_PTR)file_dialog_subclass_proc);
// Add a button to the toolbar
pImpl->_toolbar_wnd = FindWindowEx(hParentWnd, NULL, "ToolbarWindow32", NULL);
pImpl->_show_preview_button_bitmap = LoadBitmap(
hInstance, MAKEINTRESOURCE(IDC_SHOW_PREVIEW));
- TBADDBITMAP tbAddBitmap = {NULL, (UINT)pImpl->_show_preview_button_bitmap};
+ TBADDBITMAP tbAddBitmap = {NULL, (UINT_PTR)pImpl->_show_preview_button_bitmap};
const int iBitmapIndex = SendMessage(pImpl->_toolbar_wnd,
TB_ADDBITMAP, 1, (LPARAM)&tbAddBitmap);