diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-09-07 19:40:25 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-09-07 19:40:25 +0000 |
commit | ed9fa764b873d1ae27ab98249a5d3bb31c253bdb (patch) | |
tree | 814b3f7b7fef7392bcb34039fd05da3a0f28c5b6 /protocols/Tox/src/tox_utils.cpp | |
parent | 935c3102e47f424ff2d493d48eef95101dde82da (diff) |
Tox:
- change error message when tox core initialization is failed
- trying to fix error with keepstatus reconnect
git-svn-id: http://svn.miranda-ng.org/main/trunk@15297 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Tox/src/tox_utils.cpp')
-rw-r--r-- | protocols/Tox/src/tox_utils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Tox/src/tox_utils.cpp b/protocols/Tox/src/tox_utils.cpp index 223d3b1b70..e0a3e9f514 100644 --- a/protocols/Tox/src/tox_utils.cpp +++ b/protocols/Tox/src/tox_utils.cpp @@ -38,7 +38,7 @@ TCHAR* CToxProto::ToxErrorToString(TOX_ERR_NEW error) switch (error)
{
case TOX_ERR_NEW_NULL:
- return TranslateT("One of the arguments is not valid or ");
+ return TranslateT("One of the arguments is missing");
case TOX_ERR_NEW_MALLOC:
return TranslateT("Unable to allocate enough memory");
case TOX_ERR_NEW_PORT_ALLOC:
|