Changeset 1159 for trunk/src/user32/win32wmdichild.cpp
- Timestamp:
- Oct 7, 1999, 11:28:02 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wmdichild.cpp
r1093 r1159 1 /* $Id: win32wmdichild.cpp,v 1. 2 1999-09-29 09:16:32 sandervl Exp $ */1 /* $Id: win32wmdichild.cpp,v 1.3 1999-10-07 09:28:02 sandervl Exp $ */ 2 2 /* 3 3 * Win32 MDI Child Window Class for OS/2 … … 326 326 } 327 327 328 hwnd = ::CreateWindowA(cs->szClass, cs->szTitle, style, 329 cs->x, cs->y, cs->cx, cs->cy, client->getWindowHandle(), 330 (HMENU)wIDmenu, cs->hOwner, cs ); 328 if(!client->IsUnicode()) 329 hwnd = ::CreateWindowA(cs->szClass, cs->szTitle, style, 330 cs->x, cs->y, cs->cx, cs->cy, client->getWindowHandle(), 331 (HMENU)wIDmenu, cs->hOwner, cs ); 332 else 333 hwnd = ::CreateWindowW((LPWSTR)cs->szClass, (LPWSTR)cs->szTitle, style, 334 cs->x, cs->y, cs->cx, cs->cy, client->getWindowHandle(), 335 (HMENU)wIDmenu, cs->hOwner, cs ); 331 336 332 337 /* MDI windows are WS_CHILD so they won't be activated by CreateWindow */
Note:
See TracChangeset
for help on using the changeset viewer.