Changeset 9791 for trunk/src/user32/win32wbase.cpp
- Timestamp:
- Feb 13, 2003, 11:12:27 AM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbase.cpp
r9785 r9791 1 /* $Id: win32wbase.cpp,v 1.35 7 2003-02-11 14:20:01sandervl Exp $ */1 /* $Id: win32wbase.cpp,v 1.358 2003-02-13 10:12:25 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 1097 1097 ULONG Win32BaseWindow::MsgSetFocus(HWND hwnd) 1098 1098 { 1099 //Notify that focus has changed (necessary for SetFocus(0) handling) 1100 SetFocusChanged(); 1101 1099 1102 //SvL: Don't send WM_(NC)ACTIVATE messages when the window is being destroyed 1100 1103 if(fDestroyWindowCalled) { … … 1113 1116 ULONG Win32BaseWindow::MsgKillFocus(HWND hwnd) 1114 1117 { 1118 //Notify that focus has changed (necessary for SetFocus(0) handling) 1119 SetFocusChanged(); 1120 1115 1121 //SvL: Don't send WM_(NC)ACTIVATE messages when the window is being destroyed 1116 1122 if(fDestroyWindowCalled) { … … 1183 1189 if (win32top) { 1184 1190 //Must use client window handle (not frame!!) 1185 OSLibWinSetFocus(win32top->getOS2WindowHandle());1191 SetFocus(win32top->getWindowHandle()); 1186 1192 RELEASE_WNDOBJ(win32top); 1187 1193 }
Note:
See TracChangeset
for help on using the changeset viewer.