diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2012-12-21 14:41:01 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2012-12-21 14:41:01 +0000 |
commit | b3e0d5a4ed673b3ad80da1934359ee8c6606e1f4 (patch) | |
tree | 23bcea1de64670d13ff8f6f811fddf3e60edd4be /protocols/Skype/src/skype_proto.h | |
parent | eea0e07f23b6a58b30f281254fdda119b4371fcb (diff) |
- sixed some issues with history, messages, chats and contacts
git-svn-id: http://svn.miranda-ng.org/main/trunk@2778 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Skype/src/skype_proto.h')
-rw-r--r-- | protocols/Skype/src/skype_proto.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/protocols/Skype/src/skype_proto.h b/protocols/Skype/src/skype_proto.h index f1d5a07e66..8fa24a18a7 100644 --- a/protocols/Skype/src/skype_proto.h +++ b/protocols/Skype/src/skype_proto.h @@ -60,7 +60,8 @@ struct StringList : public LIST<char> bool contains(char* p)
{
- return indexOf(p) >= 0;
+ int idx;
+ return List_GetIndex((SortedList*)this, (char*)p, &idx) == 1;
}
};
|