summaryrefslogtreecommitdiff
path: root/plugins/MirOTR/src/svcs_menu.cpp
diff options
context:
space:
mode:
authorTobias Weimer <wishmaster51@googlemail.com>2016-03-12 12:04:51 +0000
committerTobias Weimer <wishmaster51@googlemail.com>2016-03-12 12:04:51 +0000
commit454e1d9c3dd95d332f2a31c261991cf4ba450bcc (patch)
tree107705e96bf2d08c0d0572dec609bc4ffe57854e /plugins/MirOTR/src/svcs_menu.cpp
parentec639ecbdf49731a0bec26240efb76eb203087bc (diff)
MirOTR: Minor cleanup
git-svn-id: http://svn.miranda-ng.org/main/trunk@16468 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirOTR/src/svcs_menu.cpp')
-rw-r--r--plugins/MirOTR/src/svcs_menu.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/MirOTR/src/svcs_menu.cpp b/plugins/MirOTR/src/svcs_menu.cpp
index 7ba2cc629a..15a139bef8 100644
--- a/plugins/MirOTR/src/svcs_menu.cpp
+++ b/plugins/MirOTR/src/svcs_menu.cpp
@@ -48,7 +48,7 @@ int StartOTR(MCONTACT hContact) {
return 0;
}
-INT_PTR SVC_StartOTR(WPARAM hContact, LPARAM lParam)
+INT_PTR SVC_StartOTR(WPARAM hContact, LPARAM)
{
TCHAR buff[512];
@@ -68,7 +68,7 @@ INT_PTR SVC_StartOTR(WPARAM hContact, LPARAM lParam)
return StartOTR(hContact);
}
-INT_PTR SVC_RefreshOTR(WPARAM hContact, LPARAM lParam)
+INT_PTR SVC_RefreshOTR(WPARAM hContact, LPARAM)
{
TCHAR buff[512];
@@ -108,7 +108,7 @@ int otr_disconnect_contact(MCONTACT hContact)
return 0;
}
-INT_PTR SVC_StopOTR(WPARAM hContact, LPARAM lParam)
+INT_PTR SVC_StopOTR(WPARAM hContact, LPARAM)
{
// prevent this filter from acting on injeceted messages for metas, when they are passed though the subcontact's proto send chain
if (otr_disconnect_contact(hContact)) return 0;
@@ -121,7 +121,7 @@ INT_PTR SVC_StopOTR(WPARAM hContact, LPARAM lParam)
return 0;
}
-INT_PTR SVC_VerifyOTR(WPARAM hContact, LPARAM lParam)
+INT_PTR SVC_VerifyOTR(WPARAM hContact, LPARAM)
{
MCONTACT hSub = db_mc_getMostOnline(hContact);
if(hSub != 0)
@@ -136,7 +136,7 @@ INT_PTR SVC_VerifyOTR(WPARAM hContact, LPARAM lParam)
return 0;
}
-INT_PTR SVC_ToggleHTMLOTR(WPARAM hContact, LPARAM lParam)
+INT_PTR SVC_ToggleHTMLOTR(WPARAM hContact, LPARAM)
{
MCONTACT hSub = db_mc_getMostOnline(hContact);
if (hSub != 0)
@@ -177,7 +177,7 @@ void InitMenu()
HookEvent(ME_CLIST_PREBUILDCONTACTMENU, SVC_PrebuildContactMenu);
}
-int SVC_PrebuildContactMenu(WPARAM hContact, LPARAM lParam)
+int SVC_PrebuildContactMenu(WPARAM hContact, LPARAM)
{
const char *proto = GetContactProto(hContact);
DWORD pol = CONTACT_DEFAULT_POLICY;