diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2003-01-28 13:56:06 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2003-01-28 13:56:06 +0000 |
| commit | c25988a756ccc3e01a554840bc9195de5641243f (patch) | |
| tree | 48b46c5850da3215c66566b0ba89aa32f9e404ae /src | |
| parent | abcc8d6d89fb2285292fbd4492e5f22230fbf422 (diff) | |
Use PM_REMOVE, not "1".
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2932 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src')
| -rw-r--r-- | src/Fl_win32.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Fl_win32.cxx b/src/Fl_win32.cxx index 8471fb392..f6db871fc 100644 --- a/src/Fl_win32.cxx +++ b/src/Fl_win32.cxx @@ -1,5 +1,5 @@ // -// "$Id: Fl_win32.cxx,v 1.33.2.37.2.42 2002/11/19 16:37:36 easysw Exp $" +// "$Id: Fl_win32.cxx,v 1.33.2.37.2.43 2003/01/28 13:56:06 easysw Exp $" // // WIN32-specific code for the Fast Light Tool Kit (FLTK). // @@ -688,7 +688,7 @@ static LRESULT CALLBACK WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lPar // save the keysym until we figure out the characters: Fl::e_keysym = ms2fltk(wParam,lParam&(1<<24)); // See if TranslateMessage turned it into a WM_*CHAR message: - if (PeekMessage(&fl_msg, hWnd, WM_CHAR, WM_SYSDEADCHAR, 1)) { + if (PeekMessage(&fl_msg, hWnd, WM_CHAR, WM_SYSDEADCHAR, PM_REMOVE)) { uMsg = fl_msg.message; wParam = fl_msg.wParam; lParam = fl_msg.lParam; @@ -1192,5 +1192,5 @@ void Fl_Window::make_current() { } // -// End of "$Id: Fl_win32.cxx,v 1.33.2.37.2.42 2002/11/19 16:37:36 easysw Exp $". +// End of "$Id: Fl_win32.cxx,v 1.33.2.37.2.43 2003/01/28 13:56:06 easysw Exp $". // |
