remove wrapper for Scroller() needed with --enable-unicode

This commit is contained in:
Andrzej Rybczak
2009-09-15 21:07:37 +00:00
parent b5a49b3fee
commit d6fbb2f657
5 changed files with 3 additions and 13 deletions

View File

@@ -132,7 +132,7 @@ std::basic_string<my_char_t> Playlist::Title()
std::basic_string<my_char_t> result = U("Playlist ");
if (ReloadTotalLength || ReloadRemaining)
itsBufferedStats = TotalLength();
result += Scroller(itsBufferedStats, itsScrollBegin, Items->GetWidth()-result.length()-(Config.new_design ? 2 : VolumeState.length()));
result += Scroller(TO_WSTRING(itsBufferedStats), itsScrollBegin, Items->GetWidth()-result.length()-(Config.new_design ? 2 : VolumeState.length()));
return result;
}