Changeset 21726 for branches/gcc-kmk/src/user32/window.cpp
- Timestamp:
- Oct 19, 2011, 11:00:18 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gcc-kmk/src/user32/window.cpp
r21720 r21726 117 117 else dprintf(("CreateWindowExA: window %s class %d parent %x (%d,%d) (%d,%d), %x %x menu=%x", windowName, className, parent, x, y, width, height, style, exStyle, menu)); 118 118 119 if(!str cmpi(className, MDICLIENTCLASSNAMEA)) {119 if(!stricmp(className, MDICLIENTCLASSNAMEA)) { 120 120 window = (Win32BaseWindow *) new Win32MDIClientWindow(&cs, classAtom, FALSE); 121 121 } 122 122 else 123 if(!str cmpi((char *) className, DIALOG_CLASS_NAMEA))123 if(!stricmp((char *) className, DIALOG_CLASS_NAMEA)) 124 124 { 125 125 DLG_TEMPLATE dlgTemplate = {0};
Note:
See TracChangeset
for help on using the changeset viewer.