diff options
author | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2012-05-21 00:38:28 +0300 |
---|---|---|
committer | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2012-05-21 00:38:28 +0300 |
commit | 829c3778ac700f2d64e7032d0727f860196e4417 (patch) | |
tree | 6f3b295e9ba3a7ed8ad5c3771d832e4c949019f9 /srmm.cpp | |
parent | bad201c5132117e8b227021b12ff9e5377a98496 (diff) |
fixed another metacontacts problem
Diffstat (limited to 'srmm.cpp')
-rwxr-xr-x | srmm.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -36,7 +36,10 @@ int __cdecl onIconPressed(WPARAM wParam, LPARAM lParam) { HANDLE hContact = (HANDLE)wParam;
HANDLE hMeta = NULL;
if(metaIsProtoMetaContacts(hContact))
+ {
+ hMeta = hContact;
hContact = metaGetMostOnline(hContact); // возьмем тот, через который пойдет сообщение
+ }
else if(metaIsSubcontact(hContact))
hMeta = metaGetContact(hContact);
StatusIconClickData *sicd = (StatusIconClickData *)lParam;
|