Author: dquintana
Date: Sun Aug 24 14:06:41 2014
New Revision: 63935

URL: http://svn.reactos.org/svn/reactos?rev=63935&view=rev
Log:
[EXPLORER-NEW]
* Turn a couple DbgPrints into ERR.

Modified:
    branches/shell-experiments/base/shell/explorer-new/explorer.c

Modified: branches/shell-experiments/base/shell/explorer-new/explorer.c
URL: 
http://svn.reactos.org/svn/reactos/branches/shell-experiments/base/shell/explorer-new/explorer.c?rev=63935&r1=63934&r2=63935&view=diff
==============================================================================
--- branches/shell-experiments/base/shell/explorer-new/explorer.c       
[iso-8859-1] (original)
+++ branches/shell-experiments/base/shell/explorer-new/explorer.c       
[iso-8859-1] Sun Aug 24 14:06:41 2014
@@ -360,7 +360,7 @@
     mm.cbSize = sizeof(mm);
     if (!SystemParametersInfo(SPI_GETMINIMIZEDMETRICS, sizeof(mm), &mm, 0))
     {
-        DbgPrint("SystemParametersInfo failed with %lu\n", GetLastError());
+        ERR("SystemParametersInfo failed with %lu\n", GetLastError());
         return;
     }
     if (bHide)
@@ -368,7 +368,7 @@
     else
         mm.iArrange &= ~ARW_HIDE;
     if (!SystemParametersInfo(SPI_SETMINIMIZEDMETRICS, sizeof(mm), &mm, 0))
-        DbgPrint("SystemParametersInfo failed with %lu\n", GetLastError());
+        ERR("SystemParametersInfo failed with %lu\n", GetLastError());
 }
 
 INT WINAPI
@@ -470,7 +470,7 @@
          * /root,<object>   Open a window for the given object path.
          * /select,<object> Open a window with the given object selected.
          */
-        
+
         /* FIXME: Do it right */
         WCHAR* tmp = wcsstr(lpCmdLine,L"/root,");
         if (tmp)


Reply via email to