Changeset 1105 for trunk/src/user32/win32wbase.cpp
- Timestamp:
- Oct 2, 1999, 6:09:13 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbase.cpp
r1093 r1105 1 /* $Id: win32wbase.cpp,v 1.2 0 1999-09-29 09:16:32sandervl Exp $ */1 /* $Id: win32wbase.cpp,v 1.21 1999-10-02 04:09:13 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 455 455 dprintf(("WM_CREATE: WinSetWindowULong2 %X failed!!", OS2Hwnd)); 456 456 return FALSE; 457 }458 if(cs->style & WS_HSCROLL) {459 OSLibWinChangeScrollStyle(OS2HwndFrame, OSLIB_HSCROLL, 0);460 }461 if(cs->style & WS_VSCROLL) {462 OSLibWinChangeScrollStyle(OS2HwndFrame, OSLIB_VSCROLL, 0);463 457 } 464 458 #if 0 … … 1250 1244 } 1251 1245 //****************************************************************************** 1246 //****************************************************************************** 1247 BOOL Win32BaseWindow::isMDIClient() 1248 { 1249 return FALSE; 1250 } 1251 //****************************************************************************** 1252 1252 //TODO: Not complete (flags) 1253 1253 //****************************************************************************** … … 1397 1397 switch(Msg) 1398 1398 { 1399 case WM_CLOSE: 1400 DestroyWindow(); 1401 return 0; 1402 1399 1403 case WM_GETTEXTLENGTH: 1400 1404 return wndNameLength; … … 1865 1869 break; 1866 1870 } 1867 return OSLibWinShowWindow(OS2HwndFrame, showstate); 1871 BOOL rc = OSLibWinShowWindow(OS2HwndFrame, showstate); 1872 return rc; 1868 1873 } 1869 1874 //****************************************************************************** … … 2305 2310 oldval = dwStyle; 2306 2311 setStyle(value); 2312 OSLibSetWindowStyle(OS2HwndFrame, dwStyle); 2307 2313 return oldval; 2308 2314 case GWL_WNDPROC:
Note:
See TracChangeset
for help on using the changeset viewer.