song list: get rid of boost::zip_iterator and improve {Const,}SongIterator

This commit is contained in:
Andrzej Rybczak
2016-12-08 04:28:43 +01:00
parent 612f8c3145
commit b7386c4fa6
15 changed files with 244 additions and 161 deletions

View File

@@ -280,7 +280,7 @@ private:
virtual void run() override;
NC::List *m_list;
SongList *m_songs;
const SongList *m_songs;
};
struct ScrollUpAlbum: BaseAction
@@ -292,7 +292,7 @@ private:
virtual void run() override;
NC::List *m_list;
SongList *m_songs;
const SongList *m_songs;
};
struct ScrollDownArtist: BaseAction
@@ -304,7 +304,7 @@ private:
virtual void run() override;
NC::List *m_list;
SongList *m_songs;
const SongList *m_songs;
};
struct ScrollDownAlbum: BaseAction
@@ -316,7 +316,7 @@ private:
virtual void run() override;
NC::List *m_list;
SongList *m_songs;
const SongList *m_songs;
};
struct PageUp: BaseAction