[WIN32K]: Whitespace fix only.

svn path=/trunk/; revision=71444
This commit is contained in:
Hermès Bélusca-Maïto 2016-05-28 19:48:44 +00:00
parent 2047efde02
commit b68e07fbaa

View file

@ -111,7 +111,7 @@ IntDesktopObjectParse(IN PVOID ParseObject,
NextEntry = NextEntry->Flink;
}
/* If we got here but this isn't a create, then fail */
/* If we got here but this isn't a create, just fail */
if (!Context) return STATUS_OBJECT_NAME_NOT_FOUND;
/* Create the desktop object */
@ -1050,7 +1050,7 @@ IntPaintDesktop(HDC hDC)
}
else
{
/* Find the upper left corner, can be negative if the bitmap is bigger then the screen */
/* Find the upper left corner, can be negative if the bitmap is bigger than the screen */
x = (sz.cx / 2) - (gspv.cxWallpaper / 2);
y = (sz.cy / 2) - (gspv.cyWallpaper / 2);
}
@ -1137,6 +1137,7 @@ IntPaintDesktop(HDC hDC)
/* Black desktop background in Safe Mode */
DesktopBrush = StockObjects[BLACK_BRUSH];
}
/* Background is set to none, clear the screen */
if (doPatBlt)
{
@ -1146,7 +1147,7 @@ IntPaintDesktop(HDC hDC)
}
/*
* Display system version on the desktop background
* Display the system version on the desktop background
*/
if (g_PaintDesktopVersion || UserGetSystemMetrics(SM_CLEANBOOT))
@ -1204,6 +1205,7 @@ IntPaintDesktop(HDC hDC)
IntGdiSetTextColor(hDC, color_old);
}
}
return TRUE;
}