diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-04-27 17:32:04 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-04-27 17:32:04 +0000 |
commit | 5cf06122b92f89b3937c74e065e6a47067663563 (patch) | |
tree | c5e53ce6842a1c2ff3e6807ad0bc6a4a5c91bef4 /protocols/Skype/src/skypekit/contact.cpp | |
parent | 2e1cf81fab0567c8433762e8c29570259e9ed6c1 (diff) |
i think more correct version. Unsane see it please
git-svn-id: http://svn.miranda-ng.org/main/trunk@4556 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Skype/src/skypekit/contact.cpp')
-rw-r--r-- | protocols/Skype/src/skypekit/contact.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/protocols/Skype/src/skypekit/contact.cpp b/protocols/Skype/src/skypekit/contact.cpp index 5cfecace38..3f0a95b717 100644 --- a/protocols/Skype/src/skypekit/contact.cpp +++ b/protocols/Skype/src/skypekit/contact.cpp @@ -39,9 +39,8 @@ bool CContact::GetFullname(SEString &firstName, SEString &lastName) {
firstName = fullname.substr(0, pos);
lastName = fullname.right(pos);
- }
-
- firstName = fullname;
+ } else
+ firstName = fullname;
return true;
}
|