Changeset 7765 for trunk/src/user32/win32wbase.cpp
- Timestamp:
- Jan 12, 2002, 3:09:54 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbase.cpp
r7762 r7765 1 /* $Id: win32wbase.cpp,v 1.31 0 2002-01-12 09:55:51 sandervl Exp $ */1 /* $Id: win32wbase.cpp,v 1.311 2002-01-12 14:09:31 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 111 111 : GenericObject(&windows, &critsect), ChildWindow(&critsect) 112 112 { 113 Init();113 Init(); 114 114 } 115 115 //****************************************************************************** … … 143 143 dwOldStyle = dwStyle; 144 144 dwExStyle = 0; 145 146 //We pretend this window has no parent and won't change size 147 //(dangerous assumption!!) 148 OSLibWinQueryWindowClientRect(OS2Hwnd, &rectClient); 149 rectWindow = rectClient; 150 151 fFakeWindow = TRUE; 145 152 } 146 153 //****************************************************************************** … … 149 156 : GenericObject(&windows, &critsect), ChildWindow(&critsect) 150 157 { 151 Init();152 this->isUnicode = isUnicode;153 CreateWindowExA(lpCreateStructA, classAtom);158 Init(); 159 this->isUnicode = isUnicode; 160 CreateWindowExA(lpCreateStructA, classAtom); 154 161 } 155 162 //****************************************************************************** … … 171 178 fVisibleRegionChanged = FALSE; 172 179 fEraseBkgndFlag = TRUE; 180 fFakeWindow = FALSE; 173 181 174 182 state = STATE_INIT; … … 315 323 if(owner && !fDestroyAll) { 316 324 RELEASE_WNDOBJ(owner); 317 }318 if(windowClass) {319 RELEASE_CLASSOBJ(windowClass);320 325 } 321 326 }
Note:
See TracChangeset
for help on using the changeset viewer.