summaryrefslogtreecommitdiff
path: root/protocols/Skype/src/skypekit
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2013-04-27 11:39:36 +0000
committerKirill Volinsky <mataes2007@gmail.com>2013-04-27 11:39:36 +0000
commitf3d22ea361554a090112ccaeb4290d14964a283d (patch)
treec1c789232a52cfb6a0a8c00d796fdc54d68ebb59 /protocols/Skype/src/skypekit
parentc7fa62a343fe1e5937602c216ec5d7e597462768 (diff)
added instruction how to build skypekit libs
cleanup git-svn-id: http://svn.miranda-ng.org/main/trunk@4551 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Skype/src/skypekit')
-rw-r--r--protocols/Skype/src/skypekit/contact.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Skype/src/skypekit/contact.cpp b/protocols/Skype/src/skypekit/contact.cpp
index 2030eba250..5cfecace38 100644
--- a/protocols/Skype/src/skypekit/contact.cpp
+++ b/protocols/Skype/src/skypekit/contact.cpp
@@ -35,7 +35,7 @@ bool CContact::GetFullname(SEString &firstName, SEString &lastName)
SEString fullname;
this->GetPropFullname(fullname);
int pos = fullname.find(" ");
- if (pos && pos < fullname.length())
+ if (pos && pos < (int)fullname.length())
{
firstName = fullname.substr(0, pos);
lastName = fullname.right(pos);