mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
disable DbgPrints
svn path=/trunk/; revision=6205
This commit is contained in:
parent
e0492ecd39
commit
9a49c3f027
1 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: defwnd.c,v 1.90 2003/09/29 19:00:44 weiden Exp $
|
||||
/* $Id: defwnd.c,v 1.91 2003/10/01 19:11:06 weiden Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS user32.dll
|
||||
|
@ -1003,7 +1003,7 @@ DefWndDoScrollBarDown(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam)
|
|||
hit = SCROLL_HitTest(hWnd, (wParam == HTHSCROLL) ? SB_HORZ : SB_VERT, Point, FALSE);
|
||||
|
||||
if(hit)
|
||||
DbgPrint("SCROLL_HitTest() == 0x%x\n", hit);
|
||||
DPRINT("SCROLL_HitTest() == 0x%x\n", hit);
|
||||
|
||||
SendMessageA(hWnd, WM_SYSCOMMAND, Msg + (UINT)wParam, lParam);
|
||||
}
|
||||
|
@ -1658,7 +1658,7 @@ DefWndNCCalcSize(HWND hWnd, RECT* Rect)
|
|||
if (Style & WS_VSCROLL)
|
||||
{
|
||||
ScrollXY = GetSystemMetrics(SM_CXVSCROLL);
|
||||
DbgPrint("@! %d > %d (%d, %d, %d ,%d)\n", Rect->right - Rect->left, ScrollXY, Rect->left, Rect->top, Rect->right, Rect->bottom);
|
||||
DPRINT("@! %d > %d (%d, %d, %d ,%d)\n", Rect->right - Rect->left, ScrollXY, Rect->left, Rect->top, Rect->right, Rect->bottom);
|
||||
if(Rect->right - Rect->left > ScrollXY)
|
||||
{
|
||||
TmpRect.right += ScrollXY - 1;
|
||||
|
|
Loading…
Reference in a new issue