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

@@ -191,7 +191,7 @@ void Lyrics::SwitchTo()
std::basic_string<my_char_t> Lyrics::Title()
{
std::basic_string<my_char_t> result = U("Lyrics: ");
result += Scroller(itsSong.toString("{%a - %t}"), itsScrollBegin, w->GetWidth()-result.length()-(Config.new_design ? 2 : VolumeState.length()));
result += Scroller(TO_WSTRING(itsSong.toString("{%a - %t}")), itsScrollBegin, w->GetWidth()-result.length()-(Config.new_design ? 2 : VolumeState.length()));
return result;
}