diff options
author | Dart Raiden <wowemuh@gmail.com> | 2014-07-01 19:31:24 +0000 |
---|---|---|
committer | Dart Raiden <wowemuh@gmail.com> | 2014-07-01 19:31:24 +0000 |
commit | 0c585fc454be53dbb02a34227bea7c990a7b14d3 (patch) | |
tree | 04906f6facbb7da249f411a542acdfd4402c6b67 /plugins/MirFox | |
parent | 8890789cd018d81a6dccaac7f1a2fb2238a855b7 (diff) |
these strings do not need to be translated
git-svn-id: http://svn.miranda-ng.org/main/trunk@9639 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirFox')
-rw-r--r-- | plugins/MirFox/src/MirandaUtils.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/MirFox/src/MirandaUtils.cpp b/plugins/MirFox/src/MirandaUtils.cpp index 1ae3f43c14..944e21c371 100644 --- a/plugins/MirFox/src/MirandaUtils.cpp +++ b/plugins/MirFox/src/MirandaUtils.cpp @@ -239,7 +239,7 @@ void MirandaUtils::sendMessage(ActionThreadArgStruct* args, MFENUM_SEND_MESSAGE_ }
if(ServiceExists(MS_POPUP_ADDPOPUPCLASS)) {
- ShowClassPopupT("MirFox_Notify", TranslateT("MirFox"), buffer);
+ ShowClassPopupT("MirFox_Notify", _T("MirFox"), buffer);
} else {
PUShowMessageT(buffer, SM_NOTIFY);
}
@@ -461,7 +461,7 @@ void MirandaUtils::setStatusOnAccount(ActionThreadArgStruct* args) }
if(ServiceExists(MS_POPUP_ADDPOPUPCLASS)) {
- ShowClassPopupT("MirFox_Notify", TranslateT("MirFox"), buffer);
+ ShowClassPopupT("MirFox_Notify", _T("MirFox"), buffer);
} else {
PUShowMessageT(buffer, SM_NOTIFY);
}
|