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/oslibwin.cpp

    r5721 r5777  
    1 /* $Id: oslibwin.cpp,v 1.94 2001-05-16 07:42:26 sandervl Exp $ */
     1/* $Id: oslibwin.cpp,v 1.95 2001-05-22 09:33:10 sandervl Exp $ */
    22/*
    33 * Window API wrappers for OS/2
     
    775775    else dwWinStyle &= ~WS_CLIPSIBLINGS;
    776776
     777    if(dwStyle & WS_MINIMIZE_W) {
     778         dwWinStyle |= WS_MINIMIZED;
     779    }
     780    else dwWinStyle &= ~WS_MINIMIZED;
     781
    777782    if(dwWinStyle != dwOldWinStyle) {
    778783      WinSetWindowULong(hwndFrame, QWL_STYLE, dwWinStyle);
Note: See TracChangeset for help on using the changeset viewer.