summaryrefslogtreecommitdiff
path: root/src/displayapp/screens/Clock.cpp
diff options
context:
space:
mode:
authorReinhold Gschweicher <pyro4hell@gmail.com>2021-11-30 22:29:00 +0100
committerJF <JF002@users.noreply.github.com>2021-12-02 21:58:31 +0100
commit85a25302bfac215f9ec7b993f6a2c21a20ee223b (patch)
treea3d8baddad7397088f66b6dfe918840481237206 /src/displayapp/screens/Clock.cpp
parentb8dfad40bbdebea1bfde1fc267b245cfaf68be8a (diff)
Clock: add missing Settings include
Add missing include in `Clock.cpp` for `Settings.h`. The Settings class is forward declared in the header file, but it needs to be included in the cpp file.
Diffstat (limited to 'src/displayapp/screens/Clock.cpp')
-rw-r--r--src/displayapp/screens/Clock.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/displayapp/screens/Clock.cpp b/src/displayapp/screens/Clock.cpp
index 71f01b93..96d8e5b0 100644
--- a/src/displayapp/screens/Clock.cpp
+++ b/src/displayapp/screens/Clock.cpp
@@ -6,6 +6,7 @@
#include "components/motion/MotionController.h"
#include "components/ble/BleController.h"
#include "components/ble/NotificationManager.h"
+#include "components/settings/Settings.h"
#include "displayapp/DisplayApp.h"
#include "displayapp/screens/WatchFaceDigital.h"
#include "displayapp/screens/WatchFaceAnalog.h"