diff options
| author | Jozef Mlich <jmlich83@gmail.com> | 2023-12-16 15:45:13 +0100 |
|---|---|---|
| committer | JF <JF002@users.noreply.github.com> | 2025-01-05 14:37:35 +0100 |
| commit | 3e23ee7c782904debabe3eb76ceba05f1e903be4 (patch) | |
| tree | 7d795ad6fd9f9edba1261073a8270748977b3dc2 /src/displayapp/screens/ApplicationList.cpp | |
| parent | d69cfcfb136e45486437ad773d362da7870042e3 (diff) | |
Show alarm controller state in status icon
Diffstat (limited to 'src/displayapp/screens/ApplicationList.cpp')
| -rw-r--r-- | src/displayapp/screens/ApplicationList.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/displayapp/screens/ApplicationList.cpp b/src/displayapp/screens/ApplicationList.cpp index 41735349..fb46b413 100644 --- a/src/displayapp/screens/ApplicationList.cpp +++ b/src/displayapp/screens/ApplicationList.cpp @@ -21,6 +21,7 @@ ApplicationList::ApplicationList(DisplayApp* app, Pinetime::Controllers::Settings& settingsController, const Pinetime::Controllers::Battery& batteryController, const Pinetime::Controllers::Ble& bleController, + const Pinetime::Controllers::AlarmController& alarmController, Controllers::DateTime& dateTimeController, Pinetime::Controllers::FS& filesystem, std::array<Tile::Applications, UserAppTypes::Count>&& apps) @@ -28,6 +29,7 @@ ApplicationList::ApplicationList(DisplayApp* app, settingsController {settingsController}, batteryController {batteryController}, bleController {bleController}, + alarmController {alarmController}, dateTimeController {dateTimeController}, filesystem {filesystem}, apps {std::move(apps)}, @@ -59,6 +61,7 @@ std::unique_ptr<Screen> ApplicationList::CreateScreen(unsigned int screenNum) co settingsController, batteryController, bleController, + alarmController, dateTimeController, pageApps); } |
