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

@@ -88,7 +88,7 @@ void Browser::SwitchTo()
std::basic_string<my_char_t> Browser::Title()
{
std::basic_string<my_char_t> result = U("Browse: ");
result += Scroller(itsBrowsedDir, itsScrollBeginning, w->GetWidth()-result.length()-(Config.new_design ? 2 : VolumeState.length()));
result += Scroller(TO_WSTRING(itsBrowsedDir), itsScrollBeginning, w->GetWidth()-result.length()-(Config.new_design ? 2 : VolumeState.length()));
return result;
}