diff options
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;
}
};
|