diff options
author | Gluzskiy Alexandr <sss123next@list.ru> | 2010-10-09 08:34:40 +0300 |
---|---|---|
committer | Gluzskiy Alexandr <sss123next@list.ru> | 2010-10-09 08:34:40 +0300 |
commit | e224f1745a79e44c9c1a4a7f26c730b768dac010 (patch) | |
tree | 0374c3ac3c256060dff2248bbb98dd6e4fdb0ef6 /metacontacts.cpp | |
parent | 5b66750e1759aef824fab28d8e36f349bc060f20 (diff) |
srmm icon fix for metacontacts
Diffstat (limited to 'metacontacts.cpp')
-rw-r--r-- | metacontacts.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/metacontacts.cpp b/metacontacts.cpp index b0eb8bf..d1e959c 100644 --- a/metacontacts.cpp +++ b/metacontacts.cpp @@ -75,9 +75,9 @@ HANDLE metaGetCurrent(HANDLE hContact) { if(!metaIsProtoMetaContacts(hContact)) return hContact; - HANDLE hcnt = metaGetDefault(hContact); - if(!IsOnline(hcnt)) - hcnt = metaGetMostOnline(hContact); + HANDLE hcnt = metaGetMostOnline (hContact); + if(!hcnt) + hcnt = metaGetDefault(hContact); return hcnt; } return hContact; |