diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-01-20 16:15:48 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-01-20 16:15:48 +0000 |
commit | 4e58aa129c384884d3b9863ac62859e75c1a8b4b (patch) | |
tree | 756252bbcf4dea30bee3518d84fd7b6ad12949ee /plugins/MirOTR | |
parent | 80bd2d399778a3f6fc39de826264aba41a24b994 (diff) |
- Another portion of _T replacement (patch from person)
git-svn-id: http://svn.miranda-ng.org/main/trunk@3191 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirOTR')
-rw-r--r-- | plugins/MirOTR/MirOTR/src/dllmain.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/MirOTR/MirOTR/src/dllmain.cpp b/plugins/MirOTR/MirOTR/src/dllmain.cpp index 4e5e0f91c9..ebba7331d7 100644 --- a/plugins/MirOTR/MirOTR/src/dllmain.cpp +++ b/plugins/MirOTR/MirOTR/src/dllmain.cpp @@ -74,7 +74,7 @@ int ModulesLoaded(WPARAM wParam, LPARAM lParam) { MessageBox(0, TranslateT(LANG_OTR_SECUREIM_TEXT), TranslateT(LANG_OTR_SECUREIM_TITLE), 0x30);
}
if (!options.bHaveSRMMIcons) {
- MessageBox(0, _T("OTR Info"), _T("Your SRMM plugin does not support status icons. Not all OTR-functions are available!"), 0x30);
+ MessageBox(NULL, TranslateT("OTR Info"), TranslateT("Your SRMM plugin does not support status icons. Not all OTR-functions are available!"), 0x30);
}
// HookEvent(ME_OPT_INITIALISE, OptInit);
|