Changeset 220 for trunk/src


Ignore:
Timestamp:
Jun 26, 1999, 5:07:01 PM (26 years ago)
Author:
sandervl
Message:

* empty log message *

Location:
trunk/src/user32
Files:
2 edited

Legend:

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

    r215 r220  
    1 /* $Id: user32.cpp,v 1.15 1999-06-26 13:21:12 sandervl Exp $ */
     1/* $Id: user32.cpp,v 1.16 1999-06-26 15:07:00 sandervl Exp $ */
    22
    33/*
     
    292292HWND WIN32API GetFocus(void)
    293293{
    294     dprintf(("USER32:  GetFocus\n"));
     294//    dprintf(("USER32:  GetFocus\n"));
    295295    return O32_GetFocus();
    296296}
  • trunk/src/user32/wndclass.cpp

    r218 r220  
    1 /* $Id: wndclass.cpp,v 1.11 1999-06-26 14:09:58 sandervl Exp $ */
     1/* $Id: wndclass.cpp,v 1.12 1999-06-26 15:07:01 sandervl Exp $ */
    22
    33/*
     
    9292                }       
    9393                return rc;
     94
    9495        case WM_CREATE:
    95         case WM_DESTROY:
    9696        case WM_MBUTTONDOWN:
    9797        case WM_RBUTTONDOWN:
     98                rc = ButtonHandler(hwnd, Msg, wParam, lParam);
     99                NotifyParent(hwnd, Msg, wParam, lParam);
     100                return rc;
     101
     102        case WM_DESTROY:
    98103                NotifyParent(hwnd, Msg, wParam, lParam);
    99104                break;
Note: See TracChangeset for help on using the changeset viewer.