Changeset 1482 for trunk/src/user32/window.cpp
- Timestamp:
- Oct 27, 1999, 8:25:24 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/window.cpp
r1433 r1482 1 /* $Id: window.cpp,v 1.2 5 1999-10-24 22:56:11sandervl Exp $ */1 /* $Id: window.cpp,v 1.26 1999-10-27 18:25:24 sandervl Exp $ */ 2 2 /* 3 3 * Win32 window apis for OS/2 … … 48 48 49 49 /* Find the class atom */ 50 if (! (classAtom = GlobalFindAtomA(className)))50 if (!HIWORD(className) || !(classAtom = GlobalFindAtomA(className))) 51 51 { 52 52 if (!HIWORD(className)) … … 142 142 143 143 /* Find the class atom */ 144 if (! (classAtom = GlobalFindAtomW(className)))144 if (!HIWORD(className) || !(classAtom = GlobalFindAtomW(className))) 145 145 { 146 146 if (!HIWORD(className))
Note:
See TracChangeset
for help on using the changeset viewer.