Changeset 1322 for trunk/src/user32/win32wbase.cpp
- Timestamp:
- Oct 16, 1999, 4:51:43 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbase.cpp
r1314 r1322 1 /* $Id: win32wbase.cpp,v 1.4 6 1999-10-16 10:28:31sandervl Exp $ */1 /* $Id: win32wbase.cpp,v 1.47 1999-10-16 14:51:42 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 1163 1163 //****************************************************************************** 1164 1164 //****************************************************************************** 1165 BOOL Win32BaseWindow::isMDIChild() 1166 { 1167 return FALSE; 1168 } 1169 //****************************************************************************** 1170 //TODO: Not complete 1171 //****************************************************************************** 1165 1172 BOOL Win32BaseWindow::isFrameWindow() 1166 1173 { 1167 if((getParent() == NULL || getParent() == windowDesktop) && ((dwStyle & WS_CAPTION) == WS_CAPTION)) 1174 // if(isMDIChild() || IsDialog() || (getParent() == NULL || getParent() == windowDesktop) && ((dwStyle & WS_CAPTION) == WS_CAPTION)) 1175 if((dwStyle & WS_CAPTION) == WS_CAPTION || dwStyle & (WS_VSCROLL|WS_HSCROLL)) 1168 1176 return TRUE; 1169 1177
Note:
See TracChangeset
for help on using the changeset viewer.