Ignore:
Timestamp:
Jan 28, 2000, 11:26:01 PM (26 years ago)
Author:
sandervl
Message:

Don't call default frame handler for WM_ADJUSTWINDOWPOS

File:
1 edited

Legend:

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

    r2529 r2552  
    1 /* $Id: window.cpp,v 1.52 2000-01-27 17:21:10 cbratschi Exp $ */
     1/* $Id: window.cpp,v 1.53 2000-01-28 22:26:01 sandervl Exp $ */
    22/*
    33 * Win32 window apis for OS/2
     
    653653    else
    654654      window = windowDesktop;
     655
    655656    if(!window) {
    656657        dprintf(("GetWindowRect, window %x not found", hwnd));
     
    662663        return FALSE;
    663664    }
    664     *pRect = *window->getWindowRect();
     665    *pRect = *window->getWindowRect(); //always in screen coordinates
     666
    665667    dprintf(("GetWindowRect %x (%d,%d) (%d,%d)", hwnd, pRect->left, pRect->top, pRect->right, pRect->bottom));
    666668    return TRUE;
     
    928930{
    929931    HWND DesktopWindow = windowDesktop->getWindowHandle();
    930     dprintf(("USER32: GetDesktopWindow, return %d\n", DesktopWindow));
     932    dprintf2(("USER32: GetDesktopWindow, returned %d\n", DesktopWindow));
    931933    return DesktopWindow;
    932934}
     
    10531055    DWP *pDWP;
    10541056
    1055     dprintf(("USER32:  BeginDeferWindowPos\n"));
    10561057    if (count <= 0)
    10571058    {
     1059        dprintf(("USER32: BeginDeferWindowPos invalid param %d", count));
    10581060        SetLastError(ERROR_INVALID_PARAMETER);
    10591061        return 0;
    10601062    }
     1063    dprintf(("USER32: BeginDeferWindowPos %d", count));
    10611064    handle = (HDWP)HeapAlloc(GetProcessHeap(), 0, sizeof(DWP) + (count-1)*sizeof(WINDOWPOS) );
    10621065    if (!handle)
     
    11001103    }
    11011104
     1105    dprintf(("USER32: DeferWindowPos hdwp %x hwnd %x hwndAfter %x (%d,%d)(%d,%d) %x", hdwp, hwnd, hwndAfter,
     1106              x, y, cx, cy, flags));
    11021107
    11031108/* Numega Bounds Checker Demo dislikes the following code.
Note: See TracChangeset for help on using the changeset viewer.