diff options
author | Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de> | 2005-07-05 15:43:20 +0000 |
---|---|---|
committer | Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de> | 2005-07-05 15:43:20 +0000 |
commit | 0bb2eb8eaaf4054fefbc45bf3cb47bbcf10b7cfd (patch) | |
tree | 93a832304b9002638cbc5748e9b2e50e42bb8a39 /hw/xwin/winmultiwindowwndproc.c | |
parent | 3af77ad3e754c4d419a1996ca73a9fd01f92388a (diff) |
Fix problem with fake Control press on Alt-Gr
https://bugs.freedesktop.org/show_bug.cgi?id=3680
https://bugs.freedesktop.org/show_bug.cgi?id=3497
Fix static declaration of winGetBaseDir
Diffstat (limited to 'hw/xwin/winmultiwindowwndproc.c')
-rwxr-xr-x | hw/xwin/winmultiwindowwndproc.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/hw/xwin/winmultiwindowwndproc.c b/hw/xwin/winmultiwindowwndproc.c index 59f562cb3..50397d8b0 100755 --- a/hw/xwin/winmultiwindowwndproc.c +++ b/hw/xwin/winmultiwindowwndproc.c @@ -720,16 +720,14 @@ winTopLevelWindowProc (HWND hwnd, UINT message, #endif /* Pass the message to the root window */ - SendMessage (hwndScreen, message, wParam, lParam); - return 0; + return winWindowProc(hwndScreen, message, wParam, lParam); case WM_SYSKEYUP: case WM_KEYUP: /* Pass the message to the root window */ - SendMessage (hwndScreen, message, wParam, lParam); - return 0; + return winWindowProc(hwndScreen, message, wParam, lParam); case WM_HOTKEY: |