[SYSICON]: Whitespace fixes only.

svn path=/trunk/; revision=70714
This commit is contained in:
Hermès Bélusca-Maïto 2016-02-12 17:21:32 +00:00
parent 3a3ddebe62
commit ed391467a5

View file

@ -76,7 +76,7 @@ int APIENTRY wWinMain(HINSTANCE hInst,
memset(&wcx, 0, sizeof(wcx));
wcx.cbSize = sizeof(wcx);
wcx.lpfnWndProc = (WNDPROC) WndProc;
wcx.lpfnWndProc = (WNDPROC)WndProc;
wcx.hInstance = hInst;
wcx.hbrBackground = (HBRUSH)COLOR_WINDOW;
wcx.lpszClassName = WndClass;
@ -92,7 +92,7 @@ int APIENTRY wWinMain(HINSTANCE hInst,
hWnd1a = CreateWindowExW(WS_EX_DLGMODALFRAME,
WndClass,
L"WS_SYSMENU | WS_EX_DLGMODALFRAME without user icon",
WS_CAPTION | WS_SYSMENU ,
WS_CAPTION | WS_SYSMENU,
CW_USEDEFAULT, CW_USEDEFAULT,
400, 100,
NULL, 0,
@ -107,7 +107,7 @@ int APIENTRY wWinMain(HINSTANCE hInst,
hWnd1b = CreateWindowExW(WS_EX_DLGMODALFRAME,
WndClass,
L"WS_SYSMENU | WS_EX_DLGMODALFRAME with user icon",
WS_CAPTION | WS_SYSMENU ,
WS_CAPTION | WS_SYSMENU,
CW_USEDEFAULT, CW_USEDEFAULT,
400, 100,
NULL, 0,
@ -124,7 +124,7 @@ int APIENTRY wWinMain(HINSTANCE hInst,
hWnd2a = CreateWindowExW(WS_EX_TOOLWINDOW,
WndClass,
L"WS_SYSMENU | WS_EX_TOOLWINDOW without user icon",
WS_CAPTION | WS_SYSMENU ,
WS_CAPTION | WS_SYSMENU,
CW_USEDEFAULT, CW_USEDEFAULT,
400, 100,
NULL, 0,
@ -138,7 +138,7 @@ int APIENTRY wWinMain(HINSTANCE hInst,
hWnd2b = CreateWindowExW(WS_EX_TOOLWINDOW,
WndClass,
L"WS_SYSMENU | WS_EX_TOOLWINDOW with user icon",
WS_CAPTION | WS_SYSMENU ,
WS_CAPTION | WS_SYSMENU,
CW_USEDEFAULT, CW_USEDEFAULT,
400, 100,
NULL, 0,