Changeset 21372 for trunk/src


Ignore:
Timestamp:
Apr 5, 2010, 9:14:15 PM (15 years ago)
Author:
vladest
Message:

Fixed notification parameter for parent

File:
1 edited

Legend:

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

    r21367 r21372  
    10761076 BOOL  fClick = FALSE;
    10771077
    1078     dprintf(("MsgButton %d at (%d,%d)", msg->message, msg->pt.x, msg->pt.y));
     1078    dprintf(("MsgButton %d at (%d,%d) %X %X", msg->message, msg->pt.x, msg->pt.y, msg->wParam, msg->lParam));
    10791079    switch(msg->message)
    10801080    {
     
    11561156        case WM_RBUTTONUP:
    11571157        {
    1158                 if (getParent())
    1159                     NotifyParent(msg->message, msg->wParam, 0);
    1160                 break;
     1158            if (getParent())
     1159            {
     1160                dprintf(("notifying parent: %X %X", msg->wParam, msg->lParam));
     1161                NotifyParent(msg->message, msg->wParam, /*0*/msg->lParam);
     1162            }
     1163            break;
    11611164        }
    11621165    }
Note: See TracChangeset for help on using the changeset viewer.