Author: gadamopoulos
Date: Sun Aug 14 10:28:49 2011
New Revision: 53222
URL:
http://svn.reactos.org/svn/reactos?rev=53222&view=rev
Log:
[win32k]
- Disable some debug prints that are not needed any more
Modified:
branches/GSoC_2011/ThemesSupport/subsystems/win32/win32k/ntuser/input.c
branches/GSoC_2011/ThemesSupport/subsystems/win32/win32k/ntuser/msgqueue.c
branches/GSoC_2011/ThemesSupport/subsystems/win32/win32k/ntuser/timer.c
Modified: branches/GSoC_2011/ThemesSupport/subsystems/win32/win32k/ntuser/input.c
URL:
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/ThemesSupport/subsyst…
==============================================================================
--- branches/GSoC_2011/ThemesSupport/subsystems/win32/win32k/ntuser/input.c [iso-8859-1]
(original)
+++ branches/GSoC_2011/ThemesSupport/subsystems/win32/win32k/ntuser/input.c [iso-8859-1]
Sun Aug 14 10:28:49 2011
@@ -1645,7 +1645,6 @@
IntSetTimer( pWnd, ID_EVENT_SYSTIMER_MOUSEHOVER, pDesk->dwMouseHoverTime,
SystemTimerProc, TMRF_SYSTEM);
// Get windows thread message points.
point = pWnd->head.pti->ptLast;
- DPRINT1("point: %d, %d\n", point.x, point.y);
// Set desktop mouse hover from the system default hover rectangle.
RECTL_vSetRect(&pDesk->rcMouseHover,
point.x - gspv.iMouseHoverWidth / 2,
Modified: branches/GSoC_2011/ThemesSupport/subsystems/win32/win32k/ntuser/msgqueue.c
URL:
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/ThemesSupport/subsyst…
==============================================================================
--- branches/GSoC_2011/ThemesSupport/subsystems/win32/win32k/ntuser/msgqueue.c
[iso-8859-1] (original)
+++ branches/GSoC_2011/ThemesSupport/subsystems/win32/win32k/ntuser/msgqueue.c
[iso-8859-1] Sun Aug 14 10:28:49 2011
@@ -549,7 +549,7 @@
{
MSG msgMouseLeave;
- DPRINT1("co_MsqInsertMouseMessage: generating WM_MOUSELEAVE\n");
+ DPRINT("co_MsqInsertMouseMessage: generating WM_MOUSELEAVE\n");
msgMouseLeave.hwnd = UserHMGetHandle(pDesk->spwndTrack);
msgMouseLeave.message = WM_MOUSELEAVE;
@@ -1393,7 +1393,7 @@
{
MSG msgMouseLeave;
- DPRINT1("co_IntProcessMouseMessage: generating WM_MOUSELEAVE\n");
+ DPRINT("co_IntProcessMouseMessage: generating WM_MOUSELEAVE\n");
msgMouseLeave.hwnd = UserHMGetHandle(pDesk->spwndTrack);
msgMouseLeave.message = WM_MOUSELEAVE;
Modified: branches/GSoC_2011/ThemesSupport/subsystems/win32/win32k/ntuser/timer.c
URL:
http://svn.reactos.org/svn/reactos/branches/GSoC_2011/ThemesSupport/subsyst…
==============================================================================
--- branches/GSoC_2011/ThemesSupport/subsystems/win32/win32k/ntuser/timer.c [iso-8859-1]
(original)
+++ branches/GSoC_2011/ThemesSupport/subsystems/win32/win32k/ntuser/timer.c [iso-8859-1]
Sun Aug 14 10:28:49 2011
@@ -326,7 +326,6 @@
pWnd == pDesk->spwndTrack )
{
Point = pWnd->head.pti->MessageQueue->MouseMoveMsg.pt;
- DPRINT1("point: %d, %d\n", Point.x, Point.y);
if ( IntPtInRect(&pDesk->rcMouseHover, Point) )
{
if (pDesk->htEx == HTCLIENT) // In a client area.
@@ -347,7 +346,7 @@
wParam = pDesk->htEx; // Need to support all HTXYZ hits.
Msg = WM_NCMOUSEHOVER;
}
- DPRINT1("Generating WM_NCMOUSEHOVER\n");
+ DPRINT("Generating WM_NCMOUSEHOVER\n");
UserPostMessage(hwnd, Msg, wParam, MAKELPARAM(Point.x, Point.y));
pDesk->dwDTFlags &= ~DF_TME_HOVER;
break; // Kill this timer.