diff options
author | Gluzskiy Alexandr <sss123next@list.ru> | 2011-03-22 14:09:37 +0200 |
---|---|---|
committer | Gluzskiy Alexandr <sss123next@list.ru> | 2011-03-22 14:09:37 +0200 |
commit | 59822f2c393d553d43adb4a5eb8daf77609063f2 (patch) | |
tree | 6e53e461a18f78516ba12f6ca9670e7c7ce7584e /metacontacts.cpp | |
parent | 0ab2db678a2a79f624a74a51ac617110d9b4413e (diff) |
new threading code (part 2, usable)
Diffstat (limited to 'metacontacts.cpp')
-rw-r--r-- | metacontacts.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/metacontacts.cpp b/metacontacts.cpp index 30d3a75..c451d9f 100644 --- a/metacontacts.cpp +++ b/metacontacts.cpp @@ -58,14 +58,14 @@ HANDLE metaGetMostOnline(HANDLE hContact) if(bMetaContacts)
return (HANDLE)CallService(MS_MC_GETMOSTONLINECONTACT,(WPARAM)hContact,0);
- return 0;
+ return hContact;
}
HANDLE metaGetDefault(HANDLE hContact)
{
if(bMetaContacts)
return (HANDLE)CallService(MS_MC_GETDEFAULTCONTACT,(WPARAM)hContact,0);
- return 0;
+ return hContact;
}
HANDLE metaGetCurrent(HANDLE hContact)
|