From 454e1d9c3dd95d332f2a31c261991cf4ba450bcc Mon Sep 17 00:00:00 2001 From: Tobias Weimer Date: Sat, 12 Mar 2016 12:04:51 +0000 Subject: MirOTR: Minor cleanup git-svn-id: http://svn.miranda-ng.org/main/trunk@16468 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/MirOTR/src/svcs_menu.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'plugins/MirOTR/src/svcs_menu.cpp') 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; -- cgit v1.2.3