Changeset 220


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

* empty log message *

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/changelog

    r194 r220  
    1  /* $Id: changelog,v 1.23 1999-06-25 18:13:22 achimha Exp $ */
     1 /* $Id: changelog,v 1.24 1999-06-26 15:06:35 sandervl Exp $ */
     2 99-06-26: Sander van Leeuwen
     3        - USER32: Changes for message spy & several message handler changes
     4
    25 99-06-25: Achim Hasenmueller
    36        - Finally fixed changelog date format to be compliant with
  • TabularUnified 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}
  • TabularUnified 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.