Changeset 849 for trunk/src/user32/new/win32wbase.cpp
- Timestamp:
- Sep 6, 1999, 10:50:35 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/new/win32wbase.cpp
r841 r849 1 /* $Id: win32wbase.cpp,v 1.1 3 1999-09-05 18:32:26sandervl Exp $ */1 /* $Id: win32wbase.cpp,v 1.14 1999-09-06 20:50:35 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 385 385 386 386 if(cs->lpszName) 387 SetWindowTextA((LPSTR)cs->lpszName); 387 { 388 if(isUnicode) 389 SetWindowTextW((LPWSTR)cs->lpszName); 390 else SetWindowTextA((LPSTR)cs->lpszName); 391 } 388 392 389 393 OS2Hwnd = OSLibWinCreateWindow((getParent()) ? getParent()->getOS2WindowHandle() : OSLIB_HWND_DESKTOP,
Note:
See TracChangeset
for help on using the changeset viewer.