From 7196463c057555a935707304b48e0a2ab2ea3443 Mon Sep 17 00:00:00 2001 From: Tobias Weimer Date: Mon, 10 Aug 2015 21:16:34 +0000 Subject: TopToolBar: - warning fixes git-svn-id: http://svn.miranda-ng.org/main/trunk@14903 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/TopToolBar/src/InternalButtons.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'plugins/TopToolBar/src/InternalButtons.cpp') diff --git a/plugins/TopToolBar/src/InternalButtons.cpp b/plugins/TopToolBar/src/InternalButtons.cpp index c7b5f0a36f..949a0f032e 100644 --- a/plugins/TopToolBar/src/InternalButtons.cpp +++ b/plugins/TopToolBar/src/InternalButtons.cpp @@ -61,7 +61,7 @@ int OnSettingChanging(WPARAM hContact, LPARAM lParam) return 0; } -INT_PTR TTBInternalMainMenuButt(WPARAM wParam, LPARAM lParam) +INT_PTR TTBInternalMainMenuButt(WPARAM, LPARAM) { POINT pt; GetCursorPos(&pt); @@ -69,7 +69,7 @@ INT_PTR TTBInternalMainMenuButt(WPARAM wParam, LPARAM lParam) return 0; } -INT_PTR TTBInternalStatusMenuButt(WPARAM wParam, LPARAM lParam) +INT_PTR TTBInternalStatusMenuButt(WPARAM, LPARAM) { POINT pt; GetCursorPos(&pt); @@ -77,7 +77,7 @@ INT_PTR TTBInternalStatusMenuButt(WPARAM wParam, LPARAM lParam) return 0; } -INT_PTR TTBInternalGroupShowHide(WPARAM wParam, LPARAM lParam) +INT_PTR TTBInternalGroupShowHide(WPARAM, LPARAM) { int newVal = !(GetWindowLongPtr(hwndContactTree, GWL_STYLE) & CLS_USEGROUPS); db_set_b(NULL, "CList", "UseGroups", (BYTE)newVal); @@ -85,14 +85,14 @@ INT_PTR TTBInternalGroupShowHide(WPARAM wParam, LPARAM lParam) return 0; } -INT_PTR TTBInternalSoundsOnOff(WPARAM wParam, LPARAM lParam) +INT_PTR TTBInternalSoundsOnOff(WPARAM, LPARAM) { int newVal = !(db_get_b(NULL, "Skin", "UseSound", 1)); db_set_b(NULL, "Skin", "UseSound", (BYTE)newVal); return 0; } -INT_PTR TTBInternalShowHideOffline(WPARAM wParam, LPARAM lParam) +INT_PTR TTBInternalShowHideOffline(WPARAM, LPARAM) { CallService(MS_CLIST_SETHIDEOFFLINE, -1, 0); return 0; -- cgit v1.2.3