summaryrefslogtreecommitdiff
path: root/src/displayapp/screens/Clock.cpp
diff options
context:
space:
mode:
authorminacode <minamoto9@web.de>2022-09-22 13:43:00 +0200
committerJF <JF002@users.noreply.github.com>2022-09-28 20:53:02 +0200
commit79728730d7eba048192efcf6a455beecb5db562d (patch)
tree05d29d15b1d3479ad6161960c95a0219d72f7921 /src/displayapp/screens/Clock.cpp
parent63932810d2707e6c530dae64b209ac240137dc17 (diff)
fix typo
Diffstat (limited to 'src/displayapp/screens/Clock.cpp')
-rw-r--r--src/displayapp/screens/Clock.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/displayapp/screens/Clock.cpp b/src/displayapp/screens/Clock.cpp
index 443506e0..d1e0f565 100644
--- a/src/displayapp/screens/Clock.cpp
+++ b/src/displayapp/screens/Clock.cpp
@@ -20,7 +20,7 @@ Clock::Clock(DisplayApp* app,
Controllers::DateTime& dateTimeController,
Controllers::Battery& batteryController,
Controllers::Ble& bleController,
- Controllers::NotificationManager& notificatioManager,
+ Controllers::NotificationManager& notificationManager,
Controllers::Settings& settingsController,
Controllers::HeartRateController& heartRateController,
Controllers::MotionController& motionController,
@@ -29,7 +29,7 @@ Clock::Clock(DisplayApp* app,
dateTimeController {dateTimeController},
batteryController {batteryController},
bleController {bleController},
- notificatioManager {notificatioManager},
+ notificationManager {notificationManager},
settingsController {settingsController},
heartRateController {heartRateController},
motionController {motionController},
@@ -74,7 +74,7 @@ std::unique_ptr<Screen> Clock::WatchFaceDigitalScreen() {
dateTimeController,
batteryController,
bleController,
- notificatioManager,
+ notificationManager,
settingsController,
heartRateController,
motionController);
@@ -85,7 +85,7 @@ std::unique_ptr<Screen> Clock::WatchFaceAnalogScreen() {
dateTimeController,
batteryController,
bleController,
- notificatioManager,
+ notificationManager,
settingsController);
}
@@ -94,7 +94,7 @@ std::unique_ptr<Screen> Clock::WatchFacePineTimeStyleScreen() {
dateTimeController,
batteryController,
bleController,
- notificatioManager,
+ notificationManager,
settingsController,
motionController);
}
@@ -104,7 +104,7 @@ std::unique_ptr<Screen> Clock::WatchFaceTerminalScreen() {
dateTimeController,
batteryController,
bleController,
- notificatioManager,
+ notificationManager,
settingsController,
heartRateController,
motionController);