diff options
author | RadAd <adamgates84+github@gmail.com> | 2019-07-12 13:57:00 +1000 |
---|---|---|
committer | RadAd <adamgates84+github@gmail.com> | 2019-07-12 13:57:00 +1000 |
commit | ff198de91521e9c048670a18ec3df717b9dc7495 (patch) | |
tree | 8dd4d5182a71f662f6003b5b003fe2a64c87665f /RadTerminalFrame.cpp | |
parent | f4020b76b769434920632947d4536b77b8b31a43 (diff) | |
download | RadTerminal-ff198de91521e9c048670a18ec3df717b9dc7495.tar.gz RadTerminal-ff198de91521e9c048670a18ec3df717b9dc7495.zip |
Added an icon
Diffstat (limited to 'RadTerminalFrame.cpp')
-rw-r--r-- | RadTerminalFrame.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/RadTerminalFrame.cpp b/RadTerminalFrame.cpp index e605da8..defcd0e 100644 --- a/RadTerminalFrame.cpp +++ b/RadTerminalFrame.cpp @@ -13,7 +13,7 @@ HWND CreateRadTerminalFrame(HINSTANCE hInstance, int nCmdShow) WNDCLASS wcMDIFrame = {}; wcMDIFrame.lpfnWndProc = RadTerminalMDIFrameProc; - wcMDIFrame.hIcon = LoadIcon(NULL, IDI_APPLICATION); + wcMDIFrame.hIcon = LoadIcon(hInstance, MAKEINTRESOURCE(IDI_ICON1)); wcMDIFrame.hCursor = LoadCursor(NULL, IDC_ARROW); //wcMDIFrame.hbrBackground = GetSysColorBrush(COLOR_WINDOW); wcMDIFrame.hInstance = hInstance; |