summaryrefslogtreecommitdiff
path: root/sfx2/source/appl
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-02-15 14:33:37 +0000
committerCaolán McNamara <caolanm@redhat.com>2012-02-15 15:11:29 +0000
commit11e384b8a1d1716b98c870c356d919f4f68a08f5 (patch)
tree5c15b3cb087a1629bcce78fb5800deb5eb24ec72 /sfx2/source/appl
parentd1f45bd66f0efe6909acdb573aecb677ae388f74 (diff)
WaE: these are integers, not pointers
Diffstat (limited to 'sfx2/source/appl')
-rw-r--r--sfx2/source/appl/shutdowniconw32.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/appl/shutdowniconw32.cxx b/sfx2/source/appl/shutdowniconw32.cxx
index 1a3a594f240d..8bd18035dd7f 100644
--- a/sfx2/source/appl/shutdowniconw32.cxx
+++ b/sfx2/source/appl/shutdowniconw32.cxx
@@ -366,7 +366,7 @@ LRESULT CALLBACK listenerWndProc( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lP
#endif
int m = TrackPopupMenuEx( popupMenu, TPM_RETURNCMD|TPM_LEFTALIGN|TPM_RIGHTBUTTON,
pt.x, pt.y, hWnd, NULL );
- PostMessage( hWnd, NULL, 0, 0 );
+ PostMessage( hWnd, 0, 0, 0 );
switch( m )
{
#if defined(USE_APP_SHORTCUTS)