new option for song format - right align (thx to Nathan Jones)

This commit is contained in:
unK
2008-09-13 21:59:05 +02:00
parent 369bbf6b96
commit c54de64176
10 changed files with 78 additions and 60 deletions

View File

@@ -28,7 +28,7 @@ extern Menu< std::pair<string, Song> > *mSearcher;
bool search_match_to_pattern = 1;
bool search_case_sensitive = 1;
string SearchEngineDisplayer(const std::pair<string, Song> &pair, void *null)
string SearchEngineDisplayer(const std::pair<string, Song> &pair, void *, const Menu< std::pair<string, Song> > *)
{
return pair.first == "." ? DisplaySong(pair.second) : pair.first;
}