summaryrefslogtreecommitdiff
path: root/plugins/Clist_nicer
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Clist_nicer')
-rw-r--r--plugins/Clist_nicer/src/CLCButton.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/plugins/Clist_nicer/src/CLCButton.cpp b/plugins/Clist_nicer/src/CLCButton.cpp
index b5c51182d6..01a0b6281d 100644
--- a/plugins/Clist_nicer/src/CLCButton.cpp
+++ b/plugins/Clist_nicer/src/CLCButton.cpp
@@ -510,16 +510,14 @@ static LRESULT CALLBACK ToolbarWndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARA
if (msg == WM_COMMAND && HIWORD(wParam) == BN_CLICKED)
SendMessage(pcli->hwndContactList, msg, wParam, lParam);
- return 0;
+ return mir_callNextSubclass(hwnd, ToolbarWndProc, msg, wParam, lParam);
}
static void CustomizeToolbar(HANDLE hButton, HWND hWnd, LPARAM)
{
// we don't customize the toolbar window, only buttons
if (hButton == TTB_WINDOW_HANDLE) {
- TTBCtrlCustomize custData = { sizeof(TTBCtrl), ToolbarWndProc };
- SendMessage(hWnd, TTB_SETCUSTOM, 0, (LPARAM)&custData);
-
+ mir_subclassWindow(hWnd, ToolbarWndProc);
InitDefaultButtons();
return;
}