mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
fix a cast and indentation
svn path=/trunk/; revision=33651
This commit is contained in:
parent
5c30086951
commit
89deeaf7c4
1 changed files with 5 additions and 5 deletions
|
@ -144,15 +144,15 @@ CreateStockObjects(void)
|
|||
(void) TextIntCreateFontIndirect(&SystemFixedFont, (HFONT*)&StockObjects[SYSTEM_FIXED_FONT]);
|
||||
(void) TextIntCreateFontIndirect(&DefaultGuiFont, (HFONT*)&StockObjects[DEFAULT_GUI_FONT]);
|
||||
|
||||
StockObjects[DEFAULT_PALETTE] = (HGDIOBJ*)PALETTE_Init();
|
||||
StockObjects[DEFAULT_PALETTE] = (HGDIOBJ)PALETTE_Init();
|
||||
|
||||
for (Object = 0; Object < NB_STOCK_OBJECTS; Object++)
|
||||
{
|
||||
if (NULL != StockObjects[Object])
|
||||
{
|
||||
if (NULL != StockObjects[Object])
|
||||
{
|
||||
GDIOBJ_ConvertToStockObj(&StockObjects[Object]);
|
||||
}
|
||||
GDIOBJ_ConvertToStockObj(&StockObjects[Object]);
|
||||
}
|
||||
}
|
||||
|
||||
DPRINT("Completed creation of stock objects\n");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue