From 7e5ea8ede78268b68b86f3f6d279deaf24593fb2 Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Sun, 10 Aug 2014 17:13:35 +0000 Subject: fixed read\write tox profile git-svn-id: http://svn.miranda-ng.org/main/trunk@10146 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/Tox/src/tox_proto.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'protocols/Tox/src/tox_proto.cpp') diff --git a/protocols/Tox/src/tox_proto.cpp b/protocols/Tox/src/tox_proto.cpp index 41abbb673a..0af9bd0cc3 100644 --- a/protocols/Tox/src/tox_proto.cpp +++ b/protocols/Tox/src/tox_proto.cpp @@ -9,7 +9,7 @@ CToxProto::CToxProto(const char* protoName, const TCHAR* userName) : get_id(tox, idstring); char dataPath[MAX_PATH]; - mir_snprintf(dataPath, MAX_PATH, "%s\\%s.tox", VARS("%miranda_profile%\\%miranda_profilename%"), m_tszUserName); + mir_snprintf(dataPath, MAX_PATH, "%s\\%s.tox", VARS("%miranda_profile%\\%miranda_profilename%"), _T2A(m_tszUserName)); LoadToxData(dataPath); @@ -30,7 +30,7 @@ CToxProto::CToxProto(const char* protoName, const TCHAR* userName) : CToxProto::~CToxProto() { char dataPath[MAX_PATH]; - mir_snprintf(dataPath, MAX_PATH, "%s\\%s.tox", VARS("%miranda_profile%\\%miranda_profilename%"), m_tszUserName); + mir_snprintf(dataPath, MAX_PATH, "%s\\%s.tox", VARS("%miranda_profile%\\%miranda_profilename%"), _T2A(m_tszUserName)); SaveToxData(dataPath); -- cgit v1.2.3