Author: hbelusca Date: Sat Mar 15 02:04:54 2014 New Revision: 62500
URL: http://svn.reactos.org/svn/reactos?rev=62500&view=rev Log: [CONSRV]: Silence some DPRINTs.
Modified: trunk/reactos/win32ss/user/winsrv/consrv/frontends/gui/guiterm.c
Modified: trunk/reactos/win32ss/user/winsrv/consrv/frontends/gui/guiterm.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/win32ss/user/winsrv/consrv/... ============================================================================== --- trunk/reactos/win32ss/user/winsrv/consrv/frontends/gui/guiterm.c [iso-8859-1] (original) +++ trunk/reactos/win32ss/user/winsrv/consrv/frontends/gui/guiterm.c [iso-8859-1] Sat Mar 15 02:04:54 2014 @@ -231,7 +231,7 @@ er.EventType = MENU_EVENT; er.Event.MenuEvent.dwCommandId = CmdId;
- DPRINT1("Menu item ID: %d\n", CmdId); + DPRINT("Menu item ID: %d\n", CmdId); ConioProcessInputEvent(Console, &er); }
@@ -1713,7 +1713,7 @@ { PCONSOLE_SCREEN_BUFFER ActiveBuffer = GuiData->ActiveBuffer;
- DPRINT1("WM_PALETTECHANGED called\n"); + DPRINT("WM_PALETTECHANGED called\n");
/* * Protects against infinite loops: @@ -1730,12 +1730,12 @@ */ if ((HWND)wParam == hWnd) break;
- DPRINT1("WM_PALETTECHANGED ok\n"); + DPRINT("WM_PALETTECHANGED ok\n");
// if (GetType(ActiveBuffer) == GRAPHICS_BUFFER) if (ActiveBuffer->PaletteHandle) { - DPRINT1("WM_PALETTECHANGED changing palette\n"); + DPRINT("WM_PALETTECHANGED changing palette\n");
/* Specify the use of the system palette for the framebuffer */ SetSystemPaletteUse(GuiData->hMemDC, ActiveBuffer->PaletteUsage); @@ -1744,7 +1744,7 @@ RealizePalette(GuiData->hMemDC); }
- DPRINT1("WM_PALETTECHANGED quit\n"); + DPRINT("WM_PALETTECHANGED quit\n");
break; }