diff options
author | dartraiden <wowemuh@gmail.com> | 2018-09-01 13:10:41 +0300 |
---|---|---|
committer | dartraiden <wowemuh@gmail.com> | 2018-09-01 13:10:41 +0300 |
commit | e113079ac418275e513abb31818d3e9d235bea7c (patch) | |
tree | 0e347a815bbb7db07f3b198ba45577379791a838 | |
parent | ab0384c4cbe377ce0505b2d4708f3cc23ca4a087 (diff) |
Tox: fix capitalization
-rw-r--r-- | protocols/Tox/src/tox_proto.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Tox/src/tox_proto.cpp b/protocols/Tox/src/tox_proto.cpp index 144b2dc69b..286e037345 100644 --- a/protocols/Tox/src/tox_proto.cpp +++ b/protocols/Tox/src/tox_proto.cpp @@ -212,7 +212,7 @@ int CToxProto::SetStatus(int iNewStatus) debugLogA(__FUNCTION__": failed to initialize tox core (%d)", error);
m_iStatus = m_iDesiredStatus = ID_STATUS_OFFLINE;
ProtoBroadcastAck(NULL, ACKTYPE_LOGIN, ACKRESULT_FAILED, nullptr);
- ShowNotification(TranslateT("Unable to initialize tox core"), ToxErrorToString(error), MB_ICONERROR);
+ ShowNotification(TranslateT("Unable to initialize Tox core"), ToxErrorToString(error), MB_ICONERROR);
return 0;
}
|