Ignore:
Timestamp:
May 9, 2000, 8:56:59 PM (25 years ago)
Author:
sandervl
Message:

lots of changes/fixes

File:
1 edited

Legend:

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

    r3493 r3501  
    1 /* $Id: window.cpp,v 1.65 2000-05-05 11:32:38 sandervl Exp $ */
     1/* $Id: window.cpp,v 1.66 2000-05-09 18:56:59 sandervl Exp $ */
    22/*
    33 * Win32 window apis for OS/2
     
    317317        return 0;
    318318    }
    319     dprintf(("DestroyWindow %x", hwnd));
    320319    return window->DestroyWindow();
    321320}
     
    812811    dprintf(("AdjustWindowRectEx %x %x %d (%d,%d)(%d,%d)\n", style, exStyle, menu, rect->left, rect->top, rect->right, rect->bottom));
    813812
     813    if(style == 0 && menu == FALSE && exStyle == 0) {
     814        return TRUE;    //nothing needs to be changed (VERIFIED in NT 4)
     815    }
    814816    /* Correct the window style */
    815817    if (!(style & (WS_POPUP | WS_CHILD)))  /* Overlapped window */
     
    10261028{
    10271029    dprintf(("FlashWindow %x %d\n", hwnd, fFlash));
    1028     return OSLibWinFlashWindow(Win32BaseWindow::Win32ToOS2Handle(hwnd), fFlash);
     1030//    return OSLibWinFlashWindow(Win32BaseWindow::Win32ToOS2Handle(hwnd), fFlash);
     1031    return 1;
    10291032}
    10301033//******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.