diff options
| author | Steve Amor <steveamor@users.noreply.github.com> | 2025-07-06 10:22:12 +0100 |
|---|---|---|
| committer | mark9064 <30447455+mark9064@users.noreply.github.com> | 2025-10-21 11:02:18 +0100 |
| commit | c9a9e72c136234b3de0b8a50956ffe999025ed0d (patch) | |
| tree | e5fd43149a24678ec4b36207f5dee9dea4c3216b /src/displayapp/screens | |
| parent | ba1934f85af2a4863c458f25334d723c0291fc06 (diff) | |
Removes redundant words to save space
Diffstat (limited to 'src/displayapp/screens')
| -rw-r--r-- | src/displayapp/screens/WatchFaceAnalog.h | 2 | ||||
| -rw-r--r-- | src/displayapp/screens/WatchFaceDigital.h | 2 | ||||
| -rw-r--r-- | src/displayapp/screens/WatchFaceInfineat.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/displayapp/screens/WatchFaceAnalog.h b/src/displayapp/screens/WatchFaceAnalog.h index 958ff64d..2c3946bf 100644 --- a/src/displayapp/screens/WatchFaceAnalog.h +++ b/src/displayapp/screens/WatchFaceAnalog.h @@ -91,7 +91,7 @@ namespace Pinetime { template <> struct WatchFaceTraits<WatchFace::Analog> { static constexpr WatchFace watchFace = WatchFace::Analog; - static constexpr const char* name = "Analog face"; + static constexpr const char* name = "Analog"; static Screens::Screen* Create(AppControllers& controllers) { return new Screens::WatchFaceAnalog(controllers.dateTimeController, diff --git a/src/displayapp/screens/WatchFaceDigital.h b/src/displayapp/screens/WatchFaceDigital.h index 3005cea5..e3a1ac64 100644 --- a/src/displayapp/screens/WatchFaceDigital.h +++ b/src/displayapp/screens/WatchFaceDigital.h @@ -80,7 +80,7 @@ namespace Pinetime { template <> struct WatchFaceTraits<WatchFace::Digital> { static constexpr WatchFace watchFace = WatchFace::Digital; - static constexpr const char* name = "Digital face"; + static constexpr const char* name = "Digital"; static Screens::Screen* Create(AppControllers& controllers) { return new Screens::WatchFaceDigital(controllers.dateTimeController, diff --git a/src/displayapp/screens/WatchFaceInfineat.h b/src/displayapp/screens/WatchFaceInfineat.h index c8e11039..f646ebac 100644 --- a/src/displayapp/screens/WatchFaceInfineat.h +++ b/src/displayapp/screens/WatchFaceInfineat.h @@ -104,7 +104,7 @@ namespace Pinetime { template <> struct WatchFaceTraits<WatchFace::Infineat> { static constexpr WatchFace watchFace = WatchFace::Infineat; - static constexpr const char* name = "Infineat face"; + static constexpr const char* name = "Infineat"; static Screens::Screen* Create(AppControllers& controllers) { return new Screens::WatchFaceInfineat(controllers.dateTimeController, |
