Ignore:
Timestamp:
May 22, 2001, 11:33:16 AM (24 years ago)
Author:
sandervl
Message:

minimize & restore fixes

File:
1 edited

Legend:

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

    r5713 r5777  
    1 /* $Id: pmwindow.cpp,v 1.130 2001-05-15 14:31:39 sandervl Exp $ */
     1/* $Id: pmwindow.cpp,v 1.131 2001-05-22 09:33:12 sandervl Exp $ */
    22/*
    33 * Win32 Window Managment Code for OS/2
     
    773773        if ((pswp->fl & (SWP_SIZE | SWP_MOVE | SWP_ZORDER)) == 0)
    774774        {
     775            if(pswp->fl & SWP_RESTORE && win32wnd->getStyle() & WS_MINIMIZE_W) {
     776                dprintf(("Restoring minimized window %x", win32wnd->getWindowHandle()));
     777                win32wnd->ShowWindow(SW_RESTORE_W);
     778            }
    775779            if(pswp->fl & SWP_SHOW) {
    776780                WinShowWindow(win32wnd->getOS2WindowHandle(), 1);
Note: See TracChangeset for help on using the changeset viewer.