summaryrefslogtreecommitdiff
path: root/plugins/TopToolBar/src/toolbarwnd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/TopToolBar/src/toolbarwnd.cpp')
-rw-r--r--plugins/TopToolBar/src/toolbarwnd.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/plugins/TopToolBar/src/toolbarwnd.cpp b/plugins/TopToolBar/src/toolbarwnd.cpp
index e3f19f693b..0541975bf3 100644
--- a/plugins/TopToolBar/src/toolbarwnd.cpp
+++ b/plugins/TopToolBar/src/toolbarwnd.cpp
@@ -127,6 +127,10 @@ LRESULT CALLBACK TopToolBarProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lPara
PostMessage(hwnd, TTB_UPDATEFRAMEVISIBILITY, 1, 0);
return FALSE;
+ case WM_DESTROY:
+ g_ctrl->hWnd = NULL;
+ break;
+
case WM_MOVE:
return 0;
@@ -247,7 +251,7 @@ LRESULT CALLBACK TopToolBarProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lPara
default:
return DefWindowProc(hwnd, msg, wParam, lParam);
}
- return(TRUE);
+ return TRUE;
}
/////////////////////////////////////////////////////////////////////////////////////////