diff options
| author | Michele Bini <michele.bini@gmail.com> | 2022-03-25 12:13:18 (GMT) |
|---|---|---|
| committer | Michele Bini <michele.bini@gmail.com> | 2022-03-25 12:23:07 (GMT) |
| commit | 060f7949866303c27dc6b8cb6dcd97ab1019d7d1 (patch) | |
| tree | 6bdaa42f4d95ea368fd036ac04a9c717c3574996 /src/components | |
| parent | 8841080305532bbbb927d1cab9ed169be4bc00fa (diff) | |
sans chimes
Diffstat (limited to 'src/components')
| -rw-r--r-- | src/components/settings/Settings.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/components/settings/Settings.h b/src/components/settings/Settings.h index ffc0dbb..086aafd 100644 --- a/src/components/settings/Settings.h +++ b/src/components/settings/Settings.h @@ -10,7 +10,6 @@ namespace Pinetime { public: enum class ClockType : uint8_t { H24, H12 }; enum class Notification : uint8_t { ON, OFF }; - enum class ChimesOption : uint8_t { None, Hours, HalfHours }; enum class WakeUpMode : uint8_t { SingleTap = 0, DoubleTap = 1, @@ -52,16 +51,6 @@ namespace Pinetime { return settings.clockFace; }; - void SetChimeOption(ChimesOption chimeOption) { - if (chimeOption != settings.chimesOption) { - settingsChanged = true; - } - settings.chimesOption = chimeOption; - }; - ChimesOption GetChimeOption() const { - return settings.chimesOption; - }; - void SetAppMenu(uint8_t menu) { appMenu = menu; }; @@ -191,7 +180,6 @@ namespace Pinetime { Notification notificationStatus = Notification::ON; uint8_t clockFace = 0; - ChimesOption chimesOption = ChimesOption::None; std::bitset<4> wakeUpMode {0}; uint16_t shakeWakeThreshold = 150; |
