diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2015-04-29 17:19:35 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2015-04-29 17:19:35 +0000 |
commit | bc7fcaca6556808b3863989989bb7197cb69ce16 (patch) | |
tree | e01b8beffef6445d5b467dfd479adb94377eb5d3 /plugins | |
parent | d2ba7b2a8775084522e63390be45eb38b9ddde1b (diff) |
users count in groups fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@13246 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/Clist_blind/src/init.cpp | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/plugins/Clist_blind/src/init.cpp b/plugins/Clist_blind/src/init.cpp index 432b41fcc3..2b262ff84c 100644 --- a/plugins/Clist_blind/src/init.cpp +++ b/plugins/Clist_blind/src/init.cpp @@ -562,17 +562,9 @@ void RebuildEntireListInternal(HWND hwnd, ClcData *tmp_dat, BOOL call_orig) TCHAR *txt;
if (szCounts[0] != '\0')
- {
-#ifdef UNICODE
- mir_sntprintf(count, SIZEOF(count), L"%S ", szCounts);
-#else
- mir_sntprintf(count, SIZEOF(count), "%s ", szCounts);
-#endif
- }
+ mir_sntprintf(count, SIZEOF(count), _T("%s "), szCounts);
else
- {
count[0] = _T('\0');
- }
txt = ParseText(template_group, t, SIZEOF(t), v, SIZEOF(v));
if (txt != NULL)
|