mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 00:45:24 +00:00
[WIN32K]: Whitespace fix only.
svn path=/trunk/; revision=71444
This commit is contained in:
parent
2047efde02
commit
b68e07fbaa
1 changed files with 52 additions and 50 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue