Ignore:
Timestamp:
Oct 17, 1999, 10:18:47 PM (26 years ago)
Author:
sandervl
Message:

GetDlgItem fix + printfs for extra MFC messages

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/win32wbase.cpp

    r1340 r1346  
    1 /* $Id: win32wbase.cpp,v 1.51 1999-10-17 16:59:58 sandervl Exp $ */
     1/* $Id: win32wbase.cpp,v 1.52 1999-10-17 20:18:45 sandervl Exp $ */
    22/*
    33 * Win32 Window Base Class for OS/2
     
    21752175}
    21762176//******************************************************************************
     2177//******************************************************************************
     2178Win32BaseWindow *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//******************************************************************************
    21772190//TODO:
    21782191//We assume (for now) that if hwndParent or hwndChildAfter are real window handles, that
     
    23792392BOOL Win32BaseWindow::IsWindowVisible()
    23802393{
     2394#if 1
     2395    return (dwStyle & WS_VISIBLE) == WS_VISIBLE;
     2396#else
    23812397    return OSLibWinIsWindowVisible(OS2Hwnd);
     2398#endif
    23822399}
    23832400//******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.