diff options
author | ElzorFox <elzorfox@ya.ru> | 2019-01-19 13:31:30 +0500 |
---|---|---|
committer | ElzorFox <elzorfox@ya.ru> | 2019-01-19 13:32:17 +0500 |
commit | 236dfc4581f03c670f4b5a5b076b2910ae25459b (patch) | |
tree | 18930bdf50c245a5f3834e2fc94ec4a9e2f2040d | |
parent | b6556b1a482bc9c36b3608b19335ec1a0c312277 (diff) |
Clist_modern: string type fix
-rw-r--r-- | plugins/Clist_modern/src/modern_cachefuncs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Clist_modern/src/modern_cachefuncs.cpp b/plugins/Clist_modern/src/modern_cachefuncs.cpp index ffe54f0a4d..77640cce7a 100644 --- a/plugins/Clist_modern/src/modern_cachefuncs.cpp +++ b/plugins/Clist_modern/src/modern_cachefuncs.cpp @@ -357,7 +357,7 @@ int GetStatusMessage(wchar_t *text, int text_size, ClcCacheEntry *pdnce, BOOL xs if (noAwayMsg && ServiceExists(MS_LASTSEEN_GET)) { ptrW pwszLastSeen((LPWSTR)CallService(MS_LASTSEEN_GET, (WPARAM)pdnce->hContact)); if (pwszLastSeen) { - CMStringW wszLastSeen(FORMAT, L"%s: %s", Translate("Last seen"), pwszLastSeen); + CMStringW wszLastSeen(FORMAT, L"%s: %s", TranslateT("Last seen"), pwszLastSeen); CopySkipUnprintableChars(text, (wchar_t*)wszLastSeen.c_str(), text_size - 1); if (text[0] != '\0') return 1; |