Ignore:
Timestamp:
May 12, 2000, 8:09:42 PM (25 years ago)
Author:
sandervl
Message:

hook, syscolor & message bugfixes

File:
1 edited

Legend:

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

    r3462 r3525  
    1 /* $Id: pmframe.cpp,v 1.52 2000-04-29 18:28:38 sandervl Exp $ */
     1/* $Id: pmframe.cpp,v 1.53 2000-05-12 18:09:41 sandervl Exp $ */
    22/*
    33 * Win32 Frame Managment Code for OS/2
     
    229229    {
    230230        dprintf(("PMFRAME: WM_PAINT"));
    231         if (win32wnd->getStyle() & WS_MINIMIZE_W)
    232          goto RunDefFrameProc;
    233         if (win32wnd->IsWindowCreated())
    234           win32wnd->MsgNCPaint();
     231        if(win32wnd->getStyle() & WS_MINIMIZE_W)
     232                goto RunDefFrameProc;
     233        if(win32wnd->IsWindowCreated())
     234                win32wnd->MsgNCPaint();
     235
    235236        goto RunDefWndProc;
    236237    }
     
    444445
    445446    case WM_ERASEBACKGROUND:
    446         break;
     447    {
     448        dprintf(("PMFRAME: WM_ERASEBACKGROUND %x", win32wnd->getWindowHandle()));
     449        RestoreOS2TIB();
     450        return (MRESULT)FALSE;
     451    }
    447452
    448453    case WM_CALCVALIDRECTS:
Note: See TracChangeset for help on using the changeset viewer.