summaryrefslogtreecommitdiff
path: root/src/displayapp/screens/Notifications.h
diff options
context:
space:
mode:
authorReinhold Gschweicher <pyro4hell@gmail.com>2022-06-27 22:32:03 +0200
committerJF <JF002@users.noreply.github.com>2022-06-28 18:50:10 +0200
commit12fad7411de43a6bc52fd7129a3edbd508fab6cc (patch)
tree384bccb654f89870e0dea4c8c80c1ca93daa4997 /src/displayapp/screens/Notifications.h
parent2c75e7aad8aa8d7b50dd3ea795bdc2938992aa69 (diff)
Notifications: no inTransition screen, simple blackbox is enough
Diffstat (limited to 'src/displayapp/screens/Notifications.h')
-rw-r--r--src/displayapp/screens/Notifications.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/displayapp/screens/Notifications.h b/src/displayapp/screens/Notifications.h
index d3088f80..9d843a9b 100644
--- a/src/displayapp/screens/Notifications.h
+++ b/src/displayapp/screens/Notifications.h
@@ -34,16 +34,14 @@ namespace Pinetime {
class NotificationItem {
public:
NotificationItem(Pinetime::Controllers::AlertNotificationService& alertNotificationService,
- Pinetime::Controllers::MotorController& motorController,
- bool isTransition = false);
+ Pinetime::Controllers::MotorController& motorController);
NotificationItem(const char* title,
const char* msg,
uint8_t notifNr,
Controllers::NotificationManager::Categories,
uint8_t notifNb,
Pinetime::Controllers::AlertNotificationService& alertNotificationService,
- Pinetime::Controllers::MotorController& motorController,
- bool isTransition = false);
+ Pinetime::Controllers::MotorController& motorController);
~NotificationItem();
bool IsRunning() const {
return running;