do not initialize screens lazily as it doesn't make much sense

This commit is contained in:
Andrzej Rybczak
2012-09-14 00:54:48 +02:00
parent 7c3f93e211
commit 1891c1c050
41 changed files with 153 additions and 205 deletions

View File

@@ -26,6 +26,8 @@
struct SortPlaylistDialog : public Screen< NC::Menu< std::pair<std::string, MPD::Song::GetFunction> > >
{
SortPlaylistDialog();
virtual void switchTo() OVERRIDE;
virtual void resize() OVERRIDE;
@@ -45,8 +47,7 @@ struct SortPlaylistDialog : public Screen< NC::Menu< std::pair<std::string, MPD:
void moveSortOrderDown();
protected:
virtual void init();
virtual bool isLockable() { return false; }
virtual bool isLockable() OVERRIDE { return false; }
private:
void setDimensions();