reduce usage of pointers / replace std::pair in SearchEngine
This commit is contained in:
@@ -93,8 +93,8 @@ class MediaLibrary : public Screen<Window>
|
||||
static void DisplayAlbums(const SearchConstraints &, void *, Menu<SearchConstraints> *);
|
||||
static void DisplayPrimaryTags(const std::string &artist, void *, Menu<std::string> *menu);
|
||||
|
||||
static bool SortSongsByTrack(MPD::Song *, MPD::Song *);
|
||||
static bool SortAllTracks(MPD::Song *, MPD::Song *);
|
||||
static bool SortSongsByTrack(const MPD::Song &, const MPD::Song &);
|
||||
static bool SortAllTracks(const MPD::Song &, const MPD::Song &);
|
||||
|
||||
static bool hasTwoColumns;
|
||||
static size_t itsLeftColStartX;
|
||||
|
||||
Reference in New Issue
Block a user