diff options
author | Dart Raiden <wowemuh@gmail.com> | 2014-05-31 18:23:29 +0000 |
---|---|---|
committer | Dart Raiden <wowemuh@gmail.com> | 2014-05-31 18:23:29 +0000 |
commit | 6a9dfc6aca626411bb5ce483acd7dbd20988a81a (patch) | |
tree | 80aabdc27cbb376f0220d959391a4e1d452ca3c4 /plugins/NotifyAnything | |
parent | 1392274ffc35c289e9dc6265990b4c71434d57e3 (diff) |
NotifyAnything: translation of debug messages is not required
git-svn-id: http://svn.miranda-ng.org/main/trunk@9386 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/NotifyAnything')
-rw-r--r-- | plugins/NotifyAnything/src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/NotifyAnything/src/main.cpp b/plugins/NotifyAnything/src/main.cpp index ec676f05b5..dc93702c32 100644 --- a/plugins/NotifyAnything/src/main.cpp +++ b/plugins/NotifyAnything/src/main.cpp @@ -259,7 +259,7 @@ HICON getIcon(const std::string &name) info.found = false;
info.nr = _ttoi(rname.c_str());
if (info.nr <= 0) {
- dbg_msg(Translate("Icon indices start at 1."), SM_WARNING);
+ dbg_msg("Icon indices start at 1.", SM_WARNING);
return deficon;
}
|