diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2015-08-10 21:16:34 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2015-08-10 21:16:34 +0000 |
commit | 7196463c057555a935707304b48e0a2ab2ea3443 (patch) | |
tree | 3cef64ade4703d5656c22ed9933c193730b7fc13 /plugins/TopToolBar/src/InternalButtons.cpp | |
parent | 95d8d4c224de772a494b3c658c8b8990c577d173 (diff) |
TopToolBar:
- warning fixes
git-svn-id: http://svn.miranda-ng.org/main/trunk@14903 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/TopToolBar/src/InternalButtons.cpp')
-rw-r--r-- | plugins/TopToolBar/src/InternalButtons.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
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;
|