- Timestamp:
- Dec 19, 1999, 8:55:41 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbase.cpp
r2140 r2145 1 /* $Id: win32wbase.cpp,v 1.11 5 1999-12-19 17:46:25 cbratschiExp $ */1 /* $Id: win32wbase.cpp,v 1.116 1999-12-19 19:55:41 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 282 282 BOOL Win32BaseWindow::IsWindowUnicode() 283 283 { 284 //dprintf2(("IsWindowUnicode %x %d", getWindowHandle(), WINPROC_GetProcType(getWindowProc()) == WIN_PROC_32W));284 dprintf2(("IsWindowUnicode %x %d", getWindowHandle(), WINPROC_GetProcType(getWindowProc()) == WIN_PROC_32W)); 285 285 return (WINPROC_GetProcType(getWindowProc()) == WIN_PROC_32W); 286 286 } … … 1956 1956 //if the destination window is created by this process & thread, call window proc directly 1957 1957 if(dwProcessId == currentProcessId && dwThreadId == GetCurrentThreadId()) { 1958 return SendInternalMessage A(Msg, wParam, lParam);1958 return SendInternalMessageW(Msg, wParam, lParam); 1959 1959 } 1960 1960 //otherwise use WinSendMsg to send it to the right process/thread
Note:
See TracChangeset
for help on using the changeset viewer.