diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-01-20 18:26:53 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-01-20 18:26:53 +0000 |
commit | 44130e3c82ba02b17d32e92835edafdb17e25230 (patch) | |
tree | b3eaf27be41f9420a04e865a39396313876c26b2 /plugins/FavContacts | |
parent | 18d6359313f9e9199eeb06f1d973d027ab784f43 (diff) |
- Another portion of _T replacement (patch from person)
git-svn-id: http://svn.miranda-ng.org/main/trunk@3196 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/FavContacts')
-rw-r--r-- | plugins/FavContacts/src/main.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/plugins/FavContacts/src/main.cpp b/plugins/FavContacts/src/main.cpp index 98b54270d6..44a08b7ae5 100644 --- a/plugins/FavContacts/src/main.cpp +++ b/plugins/FavContacts/src/main.cpp @@ -94,11 +94,8 @@ bool CoreCheck() (g_mirandaVersion >= PLUGIN_MAKE_VERSION(1,0,0,0)))
{
MessageBoxA(0,
- Translate(
- "Favourite Contacts plugin was designed to be used with Miranda IM and Miranda NG only.\n"
- "For use with any other application, please contact author.\n"
- ),
- "Favourite Contacts Error",
+ Translate("Favourite Contacts plugin was designed to be used with Miranda IM and Miranda NG only.\nFor use with any other application, please contact author.\n"),
+ Translate("Favourite Contacts Error"),
MB_ICONSTOP|MB_OK);
return false;
}
|