diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2014-09-29 17:47:24 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2014-09-29 17:47:24 +0000 |
commit | 6beb2d44b3ab2811417507be4c78c19626c9ee7e (patch) | |
tree | 0292dd1424658b2a34850dfaebafe2bdde36bfdc /protocols/Tox/src/tox_avatars.cpp | |
parent | 8f994ff592a5501018ba601d33d59a558a2d9840 (diff) |
Tox:
- profile manager is now profile import
- tox profile renaming without reloading of tox core
- updated tox core
git-svn-id: http://svn.miranda-ng.org/main/trunk@10632 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Tox/src/tox_avatars.cpp')
-rw-r--r-- | protocols/Tox/src/tox_avatars.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Tox/src/tox_avatars.cpp b/protocols/Tox/src/tox_avatars.cpp index 747ce8f643..e4f6d4afbb 100644 --- a/protocols/Tox/src/tox_avatars.cpp +++ b/protocols/Tox/src/tox_avatars.cpp @@ -164,7 +164,7 @@ INT_PTR CToxProto::SetMyAvatar(WPARAM wParam, LPARAM lParam) }
else
{
- if (tox_set_avatar(tox, TOX_AVATAR_FORMAT_NONE, NULL, 0) == TOX_ERROR)
+ if (tox_unset_avatar(tox) == TOX_ERROR)
{
debugLogA("CToxProto::SetMyAvatar: failed to unset avatar");
return -1;
|