summaryrefslogtreecommitdiff
path: root/src/displayapp/screens/ApplicationList.h
diff options
context:
space:
mode:
authorJF <jf@codingfield.com>2021-03-21 17:15:07 (GMT)
committerGitea <gitea@fake.local>2021-03-21 17:15:07 (GMT)
commit24d3eea4fba05d774ace794eb8c9b21b8f2aa8c6 (patch)
tree500b57847eb84f73fa62e7500e5a24d1a6d2f4cb /src/displayapp/screens/ApplicationList.h
parent5cd4b36d6bbf22095e0ff54aa3773febc6e1f22e (diff)
parent9f9d0eb5df8ff86b9cd1e095afa3159094dde53c (diff)
Merge branch 'develop' of JF/PineTime into master
Diffstat (limited to 'src/displayapp/screens/ApplicationList.h')
-rw-r--r--src/displayapp/screens/ApplicationList.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/displayapp/screens/ApplicationList.h b/src/displayapp/screens/ApplicationList.h
index aefb238..0a0c638 100644
--- a/src/displayapp/screens/ApplicationList.h
+++ b/src/displayapp/screens/ApplicationList.h
@@ -10,12 +10,16 @@ namespace Pinetime {
namespace Screens {
class ApplicationList : public Screen {
public:
- explicit ApplicationList(DisplayApp* app);
+ explicit ApplicationList(DisplayApp* app,
+ Pinetime::Controllers::Settings &settingsController);
~ApplicationList() override;
bool Refresh() override;
bool OnButtonPushed() override;
bool OnTouchEvent(TouchEvents event) override;
private:
+
+ Controllers::Settings& settingsController;
+
bool running = true;
ScreenList<2> screens;