diff options
-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)
|