Ignore:
Timestamp:
Mar 29, 2003, 5:38:01 PM (22 years ago)
Author:
sandervl
Message:

some minor updates

File:
1 edited

Legend:

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

    r9951 r9953  
    1 /* $Id: pmwindow.cpp,v 1.205 2003-03-28 13:56:59 sandervl Exp $ */
     1/* $Id: pmwindow.cpp,v 1.206 2003-03-29 16:37:59 sandervl Exp $ */
    22/*
    33 * Win32 Window Managment Code for OS/2
     
    644644
    645645    case WM_VRNENABLED:
     646    {
    646647        dprintf(("OS2: WM_VRNENABLED %x %x %x", win32wnd->getWindowHandle(), mp1, mp2));
    647648        //Always call handler; even if mp1 is 0. If we don't do this, the
    648649        //DivX 4 player will never be allowed to draw after putting another window
    649650        //on top of it.
     651
    650652        win32wnd->callVisibleRgnNotifyProc(TRUE);
    651653        if(!win32wnd->isComingToTop() && ((win32wnd->getExStyle() & WS_EX_TOPMOST_W) == WS_EX_TOPMOST_W))
     
    669671        }
    670672        goto RunDefWndProc;
     673    }
    671674
    672675    case WM_VRNDISABLED:
     676    {
    673677        dprintf(("OS2: WM_VRNDISABLED %x %x %x", win32wnd->getWindowHandle(), mp1, mp2));
    674678        //visible region is about to change or WinLockWindowUpdate called
    675679        //suspend window drawing
     680
    676681        win32wnd->callVisibleRgnNotifyProc(FALSE);
    677682        goto RunDefWndProc;
     683    }
    678684
    679685    case WIN32APP_DDRAWFULLSCREEN:
     
    14661472            }
    14671473        }
     1474#ifdef DEBUG
    14681475        dprintf(("WM_ADJUSTWINDOWPOS ret %x flags %x", ret, WinQueryWindowUShort(hwnd, QWS_FLAGS)));
    1469 //testestset
    14701476        if(ret == 0x0f) {
    14711477            dprintf(("PMFRAME:WM_ADJUSTWINDOWPOS, app changed windowpos struct"));
    14721478            dprintf(("%x (%s) (%d,%d), (%d,%d)", pswp->fl, DbgGetStringSWPFlags(pswp->fl), pswp->x, pswp->y, pswp->cx, pswp->cy));
    14731479        }
    1474 //testestset
     1480#endif
    14751481        rc = (MRESULT)ret;
    14761482        break;
Note: See TracChangeset for help on using the changeset viewer.