summaryrefslogtreecommitdiff
path: root/plugins/New_GPG/src/metacontacts.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/New_GPG/src/metacontacts.cpp')
-rw-r--r--plugins/New_GPG/src/metacontacts.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/plugins/New_GPG/src/metacontacts.cpp b/plugins/New_GPG/src/metacontacts.cpp
index d730dae4b0..42d2050f75 100644
--- a/plugins/New_GPG/src/metacontacts.cpp
+++ b/plugins/New_GPG/src/metacontacts.cpp
@@ -30,23 +30,9 @@ bool metaIsDefaultSubContact(MCONTACT hContact)
return db_mc_getDefault(db_mc_getMeta(hContact)) == hContact;
}
-MCONTACT metaGetContact(MCONTACT hContact)
-{
- if(db_mc_isSub(hContact))
- return db_mc_getMeta(hContact);
- return NULL;
-}
-
MCONTACT metaGetMostOnline(MCONTACT hContact)
{
if(metaIsProtoMetaContacts(hContact))
return (MCONTACT)CallService(MS_MC_GETMOSTONLINECONTACT,hContact,0);
return NULL;
}
-
-MCONTACT db_mc_getDefault(MCONTACT hContact)
-{
- if(metaIsProtoMetaContacts(hContact))
- return db_mc_getDefault(hContact);
- return NULL;
-}