Changeset 963 for trunk/src/user32/win32wbase.cpp
- Timestamp:
- Sep 17, 1999, 8:49:53 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbase.cpp
r949 r963 1 /* $Id: win32wbase.cpp,v 1. 1 1999-09-15 23:19:01 sandervlExp $ */1 /* $Id: win32wbase.cpp,v 1.2 1999-09-17 18:49:53 dengert Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 896 896 SendInternalMessageA(WM_ACTIVATEAPP, TRUE, 0); //TODO: Need thread id from hwnd app 897 897 } 898 return SendInternalMessageA(WM_SETFOCUS, hwnd, 0);898 return SendInternalMessageA(WM_SETFOCUS, OS2ToWin32Handle (hwnd), 0); 899 899 } 900 900 //****************************************************************************** … … 906 906 SendInternalMessageA(WM_ACTIVATEAPP, FALSE, 0); //TODO: Need thread id from hwnd app 907 907 } 908 return SendInternalMessageA(WM_KILLFOCUS, hwnd, 0); 909 } 908 return SendInternalMessageA(WM_KILLFOCUS, OS2ToWin32Handle (hwnd), 0); 909 } 910 //****************************************************************************** 910 911 //****************************************************************************** 911 912 //******************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.