summaryrefslogtreecommitdiff
path: root/protocols/Tox
diff options
context:
space:
mode:
authordartraiden <wowemuh@gmail.com>2017-02-28 23:29:42 +0300
committerdartraiden <wowemuh@gmail.com>2017-02-28 23:30:10 +0300
commit5b244e78a5c920acc08931d52298cd919fdb70d4 (patch)
tree6ad3e93a571452ee356938217557fe34c085f01f /protocols/Tox
parent76cbb63e192079281d7c4b51ed8318b245b6b39b (diff)
Tox: fix capitalization
Diffstat (limited to 'protocols/Tox')
-rw-r--r--protocols/Tox/src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Tox/src/main.cpp b/protocols/Tox/src/main.cpp
index d315f7605f..66979d3bdb 100644
--- a/protocols/Tox/src/main.cpp
+++ b/protocols/Tox/src/main.cpp
@@ -44,7 +44,7 @@ extern "C" int __declspec(dllexport) Load(void)
if (!TOX_VERSION_IS_ABI_COMPATIBLE())
{
wchar_t message[100];
- mir_snwprintf(message, TranslateT("Current version of plugin is support tox api version %i.%i.%i which is incompatible with %s"), TOX_VERSION_MAJOR, TOX_VERSION_MINOR, TOX_VERSION_PATCH, TOX_LIBRARY);
+ mir_snwprintf(message, TranslateT("Current version of plugin is support Tox API version %i.%i.%i which is incompatible with %s"), TOX_VERSION_MAJOR, TOX_VERSION_MINOR, TOX_VERSION_PATCH, TOX_LIBRARY);
CToxProto::ShowNotification(message, MB_ICONERROR);
FreeLibrary(g_hToxLibrary);
return 2;