From 428bf0cbd77813a43094cb5c984436deff251936 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Fri, 29 Jul 2016 12:36:34 +0000 Subject: no more TCHARs git-svn-id: http://svn.miranda-ng.org/main/trunk@17143 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/AvatarHistory/src/utils.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'plugins/AvatarHistory/src/utils.cpp') diff --git a/plugins/AvatarHistory/src/utils.cpp b/plugins/AvatarHistory/src/utils.cpp index e3c7bbe109..2a97cf3d2f 100644 --- a/plugins/AvatarHistory/src/utils.cpp +++ b/plugins/AvatarHistory/src/utils.cpp @@ -93,7 +93,7 @@ wchar_t* GetHistoryFolder(wchar_t *fn) { if (fn == NULL) return NULL; FoldersGetCustomPathT(hFolder, fn, MAX_PATH, basedir); - CreateDirectoryTreeT(fn); + CreateDirectoryTreeW(fn); return fn; } @@ -105,7 +105,7 @@ wchar_t* GetProtocolFolder(wchar_t *fn, char *proto) proto = Translate("Unknown Protocol"); mir_snwprintf(fn, MAX_PATH, L"%s\\%S", fn, proto); - CreateDirectoryTreeT(fn); + CreateDirectoryTreeW(fn); return fn; } @@ -119,7 +119,7 @@ wchar_t* GetContactFolder(wchar_t *fn, MCONTACT hContact) wcsncpy_s(uin, (id == NULL) ? TranslateT("Unknown UIN") : id, _TRUNCATE); ConvertToFilename(uin, MAX_PATH); //added so that weather id's like "yw/CI0000" work mir_snwprintf(fn, MAX_PATH, L"%s\\%s", fn, uin); - CreateDirectoryTreeT(fn); + CreateDirectoryTreeW(fn); #ifdef DBGPOPUPS wchar_t log[1024]; -- cgit v1.2.3