diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2014-08-14 19:56:42 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2014-08-14 19:56:42 +0000 |
commit | 29fcbd4c970c7b2aba1539519b8ec68f0370a1e2 (patch) | |
tree | ed4139f9b0ab7eb9d41ae2416a5cfd562ccea22f /protocols/Tox/src/tox_contacts.cpp | |
parent | 14001c799e72b8eefa523f8ff7ce44c443c78db8 (diff) |
Tox: more point to save tox data
git-svn-id: http://svn.miranda-ng.org/main/trunk@10184 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Tox/src/tox_contacts.cpp')
-rw-r--r-- | protocols/Tox/src/tox_contacts.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Tox/src/tox_contacts.cpp b/protocols/Tox/src/tox_contacts.cpp index c0c9335d63..6cf642cca6 100644 --- a/protocols/Tox/src/tox_contacts.cpp +++ b/protocols/Tox/src/tox_contacts.cpp @@ -108,9 +108,9 @@ void CToxProto::LoadContactList() std::string nick(username.begin(), username.end());
setString(hContact, "Nick", nick.c_str());
- uint8_t userstatus = tox_get_user_status(tox, friends[i]);
+ /*uint8_t userstatus = tox_get_user_status(tox, friends[i]);
int status = ToxToMirandaStatus((TOX_USERSTATUS)userstatus);
- SetContactStatus(hContact, status);
+ SetContactStatus(hContact, status);*/
}
}
}
|