diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2013-04-11 21:39:54 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2013-04-11 21:39:54 +0000 |
commit | 87ee76a5b9e52201aaf982fd98479f4edf167b5b (patch) | |
tree | 01381cddf5f96cc21700d35cb5fbf9d38b1cf2ca /plugins/SpellChecker | |
parent | af0bb7a5be5c59b6b23e9bf6e6903a8bce3d22ab (diff) |
unicode status icons
git-svn-id: http://svn.miranda-ng.org/main/trunk@4428 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SpellChecker')
-rw-r--r-- | plugins/SpellChecker/src/spellchecker.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/SpellChecker/src/spellchecker.cpp b/plugins/SpellChecker/src/spellchecker.cpp index f932eac92b..fda33b9043 100644 --- a/plugins/SpellChecker/src/spellchecker.cpp +++ b/plugins/SpellChecker/src/spellchecker.cpp @@ -74,15 +74,15 @@ static int IconsChanged(WPARAM wParam, LPARAM lParam) StatusIconData sid = { sizeof(sid) }; sid.szModule = MODULE_NAME; sid.hIconDisabled = Skin_GetIcon("spellchecker_disabled"); - sid.flags = MBF_HIDDEN; + sid.flags = MBF_HIDDEN | MBF_TCHAR; for (int i = 0; i < languages.getCount(); i++) { sid.dwId = i; - char tmp[128]; - mir_snprintf(tmp, SIZEOF(tmp), "%s - %S", - Translate("Spell Checker"), languages[i]->full_name); - sid.szTooltip = tmp; + TCHAR tmp[128]; + mir_sntprintf(tmp, SIZEOF(tmp), _T("%s - %s"), + TranslateT("Spell Checker"), languages[i]->full_name); + sid.tszTooltip = tmp; HICON hIcon = (opts.use_flags) ? Skin_GetIconByHandle(languages[i]->hIcolib) : Skin_GetIcon("spellchecker_enabled"); sid.hIcon = CopyIcon(hIcon); |