Changeset 1346 for trunk/src/user32/win32wbase.cpp
- Timestamp:
- Oct 17, 1999, 10:18:47 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbase.cpp
r1340 r1346 1 /* $Id: win32wbase.cpp,v 1.5 1 1999-10-17 16:59:58sandervl Exp $ */1 /* $Id: win32wbase.cpp,v 1.52 1999-10-17 20:18:45 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 2175 2175 } 2176 2176 //****************************************************************************** 2177 //****************************************************************************** 2178 Win32BaseWindow *Win32BaseWindow::FindWindowById(int id) 2179 { 2180 for (Win32BaseWindow *child = (Win32BaseWindow *)getFirstChild(); child; child = (Win32BaseWindow *)child->getNextChild()) 2181 { 2182 if (child->getWindowId() == id) 2183 { 2184 return child; 2185 } 2186 } 2187 return 0; 2188 } 2189 //****************************************************************************** 2177 2190 //TODO: 2178 2191 //We assume (for now) that if hwndParent or hwndChildAfter are real window handles, that … … 2379 2392 BOOL Win32BaseWindow::IsWindowVisible() 2380 2393 { 2394 #if 1 2395 return (dwStyle & WS_VISIBLE) == WS_VISIBLE; 2396 #else 2381 2397 return OSLibWinIsWindowVisible(OS2Hwnd); 2398 #endif 2382 2399 } 2383 2400 //******************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.