From 50b1df91f2a061776ec14528abcef27b4117604c Mon Sep 17 00:00:00 2001 From: George Hazan Date: Sun, 2 Feb 2014 20:26:12 +0000 Subject: switch to modern helpers git-svn-id: http://svn.miranda-ng.org/main/trunk@8018 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Clist_mw/src/clistsettings.cpp | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) (limited to 'plugins/Clist_mw') diff --git a/plugins/Clist_mw/src/clistsettings.cpp b/plugins/Clist_mw/src/clistsettings.cpp index 7e6b081d80..ed3573d6d7 100644 --- a/plugins/Clist_mw/src/clistsettings.cpp +++ b/plugins/Clist_mw/src/clistsettings.cpp @@ -203,18 +203,7 @@ char *GetContactCachedProtocol(HANDLE hContact) char *GetProtoForContact(HANDLE hContact) { - DBVARIANT dbv; - DBCONTACTGETSETTING dbcgs; - char name[32]; - - dbv.type = DBVT_ASCIIZ; - dbv.pszVal = name; - dbv.cchVal = SIZEOF(name); - dbcgs.pValue = &dbv; - dbcgs.szModule = "Protocol"; - dbcgs.szSetting = "p"; - if (CallService(MS_DB_CONTACT_GETSETTINGSTATIC,(WPARAM)hContact,(LPARAM)&dbcgs)) return NULL; - return mir_strdup(dbcgs.pValue->pszVal); + return mir_strdup(GetContactProto(hContact)); } int GetStatusForContact(HANDLE hContact,char *szProto) -- cgit v1.2.3