aboutsummaryrefslogtreecommitdiffstats
path: root/src/displayapp/screens/Timer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/displayapp/screens/Timer.h')
-rw-r--r--src/displayapp/screens/Timer.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/displayapp/screens/Timer.h b/src/displayapp/screens/Timer.h
index a6e26063..e452a9d9 100644
--- a/src/displayapp/screens/Timer.h
+++ b/src/displayapp/screens/Timer.h
@@ -7,12 +7,12 @@
#include "displayapp/widgets/Counter.h"
#include <lvgl/lvgl.h>
-#include "components/timer/TimerController.h"
+#include "components/timer/Timer.h"
namespace Pinetime::Applications::Screens {
class Timer : public Screen {
public:
- Timer(Controllers::TimerController& timerController);
+ Timer(Controllers::Timer& timerController);
~Timer() override;
void Refresh() override;
void Reset();
@@ -24,7 +24,7 @@ namespace Pinetime::Applications::Screens {
void SetTimerRunning();
void SetTimerStopped();
void UpdateMask();
- Controllers::TimerController& timerController;
+ Controllers::Timer& timer;
lv_obj_t* btnPlayPause;
lv_obj_t* txtPlayPause;