Ignore:
Timestamp:
Oct 24, 2001, 5:41:54 PM (24 years ago)
Author:
sandervl
Message:

double click fix + double click on system menu now works

File:
1 edited

Legend:

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

    r7110 r7195  
    1 /* $Id: pmwindow.cpp,v 1.156 2001-10-18 13:28:08 sandervl Exp $ */
     1/* $Id: pmwindow.cpp,v 1.157 2001-10-24 15:41:54 sandervl Exp $ */
    22/*
    33 * Win32 Window Managment Code for OS/2
     
    331331    case WM_SHOW:
    332332        dprintf(("OS2: WM_SHOW %x %d", hwnd, mp1));
    333         //SvL: When a window is made visible, then we don't receive a
    334         //     WM_VRNENABLED message (for some weird reason)
    335         win32wnd->callVisibleRgnNotifyProc(TRUE);
    336333        win32wnd->MsgShow((ULONG)mp1);
    337334        break;
     
    695692    {
    696693        //WM_CREATE handled during client window creation
    697         dprintf(("PMFRAME: WM_CREATE %x"));
     694        dprintf(("PMFRAME: WM_CREATE %x", hwnd));
    698695        goto RunDefFrameWndProc;
    699696    }
     
    972969        }
    973970
     971        //SvL: When a window is made visible, then we don't receive a
     972        //     WM_VRNENABLED message (for some weird reason)
     973        if(pswp->fl & SWP_SHOW) {
     974            win32wnd->callVisibleRgnNotifyProc(TRUE);
     975        }
     976        else
     977        if(pswp->fl & SWP_HIDE) {
     978            win32wnd->callVisibleRgnNotifyProc(FALSE);
     979        }
     980
    974981        if ((pswp->fl & (SWP_SIZE | SWP_MOVE | SWP_ZORDER)) == 0)
    975982        {
Note: See TracChangeset for help on using the changeset viewer.