summaryrefslogtreecommitdiff
path: root/plugins/TopToolBar/src/toolbarwnd.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2012-11-04 23:26:08 +0000
committerGeorge Hazan <george.hazan@gmail.com>2012-11-04 23:26:08 +0000
commit59e4f9335276f10bfa6dd9874bff457405e079ed (patch)
treeb6ff25a5fc4eacb33b5c2bfcfda581f209a4e561 /plugins/TopToolBar/src/toolbarwnd.cpp
parent1c0f4afc353a295e01af1584432d3d588d5721dc (diff)
more clear exit from TTB
git-svn-id: http://svn.miranda-ng.org/main/trunk@2204 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
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;
}
/////////////////////////////////////////////////////////////////////////////////////////