diff options
| author | Riku Isokoski <riksu9000@gmail.com> | 2023-04-11 12:18:49 +0300 |
|---|---|---|
| committer | Riku Isokoski <riksu9000@gmail.com> | 2023-04-16 14:33:23 +0000 |
| commit | 40f7e1c7be6882e01058b5ccf64d5005c6105346 (patch) | |
| tree | 7117de9dc371404da75efd10813d724b5e0205a3 /src/displayapp/DisplayApp.cpp | |
| parent | 661ffbeb1eea68ec0cd63b4db537515f1d1772c8 (diff) | |
TimerController: Rename to Timer
Diffstat (limited to 'src/displayapp/DisplayApp.cpp')
| -rw-r--r-- | src/displayapp/DisplayApp.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/displayapp/DisplayApp.cpp b/src/displayapp/DisplayApp.cpp index 80b6e201..fe2ee213 100644 --- a/src/displayapp/DisplayApp.cpp +++ b/src/displayapp/DisplayApp.cpp @@ -95,7 +95,7 @@ DisplayApp::DisplayApp(Drivers::St7789& lcd, touchHandler {touchHandler}, filesystem {filesystem}, lvgl {lcd, filesystem}, - timerController(this, TimerCallback) { + timer(this, TimerCallback) { } void DisplayApp::Start(System::BootErrors error) { @@ -452,7 +452,7 @@ void DisplayApp::LoadScreen(Apps app, DisplayApp::FullRefreshDirections directio Screens::Notifications::Modes::Preview); break; case Apps::Timer: - currentScreen = std::make_unique<Screens::Timer>(timerController); + currentScreen = std::make_unique<Screens::Timer>(timer); break; case Apps::Alarm: currentScreen = std::make_unique<Screens::Alarm>(alarmController, settingsController.GetClockType(), *systemTask, motorController); |
