Ignore:
Timestamp:
Mar 20, 2002, 11:30:08 AM (23 years ago)
Author:
sandervl
Message:

Changes & fixes for minimized windows

File:
1 edited

Legend:

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

    r7943 r8105  
    1 /* $Id: pmwindow.cpp,v 1.169 2002-02-18 10:14:57 sandervl Exp $ */
     1/* $Id: pmwindow.cpp,v 1.170 2002-03-20 10:30:06 sandervl Exp $ */
    22/*
    33 * Win32 Window Managment Code for OS/2
     
    987987        }
    988988
     989        //@@PF all commands from minimized window viewer or from Ctrl-Esc
     990        //are 'pure' and should be handled only by DeFrameProc - this is weird
     991        //but without them we will not have results. Pure = plain flag of restore/minimize/maximize
     992        if((pswp->fl == SWP_MINIMIZE) || (pswp->fl & SWP_RESTORE)) {
     993          // note the purity of SWP no other SWP_FLAGS allowed
     994           goto RunDefFrameWndProc;
     995        }
     996
    989997        if(pswp->fl & SWP_NOADJUST) {
    990998            //ignore weird messages (TODO: why are they sent?)
Note: See TracChangeset for help on using the changeset viewer.