summaryrefslogtreecommitdiff
path: root/plugins/NewAwaySysMod/src/Notification.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2018-04-27 23:24:15 +0200
committerGeorge Hazan <ghazan@miranda.im>2018-04-27 23:25:14 +0200
commit77d5da22c96501bb51a348afee5aed48a02d1956 (patch)
treead3554c9cbcde2fc82ad380402f838a788b9478c /plugins/NewAwaySysMod/src/Notification.cpp
parent513f0d3a3c99a5b9040de359deebe4dae6b00fe7 (diff)
compilation fix
Diffstat (limited to 'plugins/NewAwaySysMod/src/Notification.cpp')
-rw-r--r--plugins/NewAwaySysMod/src/Notification.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/NewAwaySysMod/src/Notification.cpp b/plugins/NewAwaySysMod/src/Notification.cpp
index a451c2d392..58b4eaf8dd 100644
--- a/plugins/NewAwaySysMod/src/Notification.cpp
+++ b/plugins/NewAwaySysMod/src/Notification.cpp
@@ -42,6 +42,6 @@ void ShowLog(TCString &LogFilePath)
if (Result <= 32) {
wchar_t szError[64];
mir_snwprintf(szError, TranslateT("Error #%d"), Result);
- ShowMsg(szError, TranslateT("Can't open log file ") + LogFilePath, true);
+ ShowMsg(szError, TCString(TranslateT("Can't open log file ")) + LogFilePath, true);
}
}