From 04ea225a48f0fe836361882cb0f78e7b99ee582f Mon Sep 17 00:00:00 2001 From: George Hazan Date: Mon, 24 Feb 2014 12:47:23 +0000 Subject: more useless conversions removed git-svn-id: http://svn.miranda-ng.org/main/trunk@8254 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/ContactsPlus/src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/ContactsPlus/src/main.cpp') diff --git a/plugins/ContactsPlus/src/main.cpp b/plugins/ContactsPlus/src/main.cpp index 549685e941..e4398e6e06 100644 --- a/plugins/ContactsPlus/src/main.cpp +++ b/plugins/ContactsPlus/src/main.cpp @@ -122,7 +122,7 @@ static int HookPreBuildContactMenu(WPARAM hContact, LPARAM lParam) if (szProto && CheckContactsServiceSupport(szProto)) { // known protocol, protocol supports contacts sending // check the selected contact if it supports contacts receive - if (CallProtoService(szProto, PS_GETCAPS, PFLAG_MAXCONTACTSPERPACKET, (LPARAM)hContact)) + if (CallProtoService(szProto, PS_GETCAPS, PFLAG_MAXCONTACTSPERPACKET, hContact)) bVisible = TRUE; } @@ -136,7 +136,7 @@ static int HookModulesLoaded(WPARAM wParam, LPARAM lParam) char* modules[2] = { 0 }; modules[0] = MODULENAME; - CallService("DBEditorpp/RegisterModule", (WPARAM)modules, (LPARAM)1); + CallService("DBEditorpp/RegisterModule", (WPARAM)modules, 1); CLISTMENUITEM mi = { sizeof(mi) }; mi.pszName = LPGEN("Contacts"); -- cgit v1.2.3