diff options
Diffstat (limited to 'src/metacontacts.cpp')
-rwxr-xr-x | src/metacontacts.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/metacontacts.cpp b/src/metacontacts.cpp index 1abc2aa..ab3c60b 100755 --- a/src/metacontacts.cpp +++ b/src/metacontacts.cpp @@ -21,7 +21,7 @@ extern bool bMetaContacts; bool metaIsProtoMetaContacts(HANDLE hContact)
{
if(bMetaContacts) {
- LPSTR proto = (LPSTR)CallService(MS_PROTO_GETCONTACTBASEPROTO, (WPARAM)hContact, 0);
+ LPSTR proto = GetContactProto(hContact);
if( proto && strcmp(proto,"MetaContacts")==0 ) {
return true;
}
|