diff options
Diffstat (limited to 'RadTerminalFrame.cpp')
-rw-r--r-- | RadTerminalFrame.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/RadTerminalFrame.cpp b/RadTerminalFrame.cpp index 9ed7ebf..1d2aeff 100644 --- a/RadTerminalFrame.cpp +++ b/RadTerminalFrame.cpp @@ -8,7 +8,7 @@ HWND ActionNewWindow(HWND hWnd, bool bParseCmdLine); LRESULT CALLBACK RadTerminalMDIFrameProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam); -HWND CreateRadTerminalFrame(HINSTANCE hInstance, int nCmdShow) +HWND CreateRadTerminalFrame(HINSTANCE hInstance) { WNDCLASS wcMDIFrame = {}; @@ -36,8 +36,6 @@ HWND CreateRadTerminalFrame(HINSTANCE hInstance, int nCmdShow) if (hFrame == NULL) return NULL; - ShowWindow(hFrame, nCmdShow); - return hFrame; } |