diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2014-08-12 19:54:22 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2014-08-12 19:54:22 +0000 |
commit | 2e2390295cbf3f8f24a938bf957d3ecd5b86d3a6 (patch) | |
tree | c0282edc1d21e3056dfc86077fa7503524b9b366 /protocols/Tox/src/tox_contacts.cpp | |
parent | 442fbaf1d2df12c1f359b0ab64ddcecaff250628 (diff) |
Tox: contact deletion
git-svn-id: http://svn.miranda-ng.org/main/trunk@10172 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Tox/src/tox_contacts.cpp')
-rw-r--r-- | protocols/Tox/src/tox_contacts.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/protocols/Tox/src/tox_contacts.cpp b/protocols/Tox/src/tox_contacts.cpp index 1fd99bc36e..3ae3cf9f21 100644 --- a/protocols/Tox/src/tox_contacts.cpp +++ b/protocols/Tox/src/tox_contacts.cpp @@ -96,6 +96,16 @@ void CToxProto::LoadContactList() std::string toxId = DataToHexString(clientId);
MCONTACT hContact = AddContact(toxId.c_str());
+ if (hContact)
+ {
+ tox_get_name(tox, friends[i], &username[0]);
+ std::string nick(username.begin(), username.end());
+ setString(hContact, "Nick", nick.c_str());
+
+ uint8_t userstatus = tox_get_user_status(tox, friends[i]);
+ int status = ToxToMirandaStatus((TOX_USERSTATUS)userstatus);
+ SetContactStatus(hContact, status);
+ }
}
}
}
|