diff options
author | John Ankarström <john@ankarstrom.se> | 2022-07-19 15:35:20 +0200 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2022-07-19 15:35:20 +0200 |
commit | 665af5653391baa19bd678bc27d3157360edc6fc (patch) | |
tree | 8c8e121502edf121092f0548bbd96fdf4410b505 /c/main.cpp | |
parent | 54914d64a3d4564f470177dd8b7675bc46ecbe0b (diff) | |
download | EpisodeBrowser-665af5653391baa19bd678bc27d3157360edc6fc.tar.gz |
Formatting.
Diffstat (limited to 'c/main.cpp')
-rw-r--r-- | c/main.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -118,8 +118,7 @@ int WINAPI WinMain(const HINSTANCE hInstance, const HINSTANCE, char* const, cons TEXT("Episode Browser"), WS_OVERLAPPEDWINDOW, CW_USEDEFAULT, CW_USEDEFAULT, 0, 0, - NULL, NULL, hInstance, NULL - ); + NULL, NULL, hInstance, NULL); if (!hHook) throw Win32Error(GetLastError()); if (!hWnd) throw Win32Error(GetLastError()); UnhookWindowsHookEx(hHook); @@ -130,8 +129,7 @@ int WINAPI WinMain(const HINSTANCE hInstance, const HINSTANCE, char* const, cons (const TCHAR*)NULL, WS_CHILD|WS_VISIBLE|SBARS_SIZEGRIP, 0, 0, 0, 0, - hWnd, (HMENU)ID_STATUS, hInstance, NULL - ); + hWnd, (HMENU)ID_STATUS, hInstance, NULL); ShowWindow(hWnd, nCmdShow); |