diff options
author | Andrzej Rybczak <electricityispower@gmail.com> | 2011-11-12 19:47:47 +0100 |
---|---|---|
committer | Andrzej Rybczak <electricityispower@gmail.com> | 2011-11-12 19:47:47 +0100 |
commit | 56467eaac658b34a66aef583fc489331dfd5a7c8 (patch) | |
tree | 7779e2687678f9ec393d3559fdd2b0df6ddb37dd /src/lastfm.h | |
parent | e31dec7005a2345432c4d318fc936caf675ef2c0 (diff) |
new feature: support for merging screens together
Diffstat (limited to 'src/lastfm.h')
-rw-r--r-- | src/lastfm.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lastfm.h b/src/lastfm.h index 6bbdc601..82d8060a 100644 --- a/src/lastfm.h +++ b/src/lastfm.h @@ -52,6 +52,8 @@ class Lastfm : public Screen<Scrollpad> virtual List *GetList() { return 0; } + virtual bool isMergable() { return true; } + void Refetch(); bool isDownloading() { return isDownloadInProgress && !isReadyToTake; } @@ -59,6 +61,7 @@ class Lastfm : public Screen<Scrollpad> protected: virtual void Init(); + virtual bool isLockable() { return false; } private: std::basic_string<my_char_t> itsTitle; |