Changeset 8702 for trunk/src/user32


Ignore:
Timestamp:
Jun 18, 2002, 11:32:26 AM (23 years ago)
Author:
sandervl
Message:

minor logging changes

Location:
trunk/src/user32
Files:
2 edited

Legend:

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

    r8566 r8702  
    1 /* $Id: oslibmsgtranslate.cpp,v 1.88 2002-06-04 10:11:58 sandervl Exp $ */
     1/* $Id: oslibmsgtranslate.cpp,v 1.89 2002-06-18 09:32:26 sandervl Exp $ */
    22/*
    33 * Window message translation functions for OS/2
     
    437437        HWND hwnd;
    438438
    439         dprintf2(("WM_NCMOUSEMOVE (%d,%d)", winMsg->pt.x, winMsg->pt.y));
     439        dprintf2(("WM_MOUSEMOVE (%d,%d)", winMsg->pt.x, winMsg->pt.y));
    440440        DisableLogging();
    441441        if(GetCapture() != winMsg->hwnd)
  • trunk/src/user32/winmouse.cpp

    r8533 r8702  
    1 /* $Id: winmouse.cpp,v 1.24 2002-05-31 09:54:05 sandervl Exp $ */
     1/* $Id: winmouse.cpp,v 1.25 2002-06-18 09:32:26 sandervl Exp $ */
    22/*
    33 * Win32 mouse functions
     
    7070{
    7171    BOOL ret;
    72 
    73     dprintf(("USER32: SetCursorPos %d %d", X,Y));
     72    dprintf(("USER32: SetCursorPos (%d,%d)", X,Y));
     73
    7474    ret = OSLibWinSetPointerPos(X, mapScreenY(Y));
    7575    if(ret == TRUE) {
Note: See TracChangeset for help on using the changeset viewer.