aboutsummaryrefslogtreecommitdiff
path: root/include/datetime/appointment.h
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-10-28 08:20:13 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2021-10-28 08:20:13 +0200
commit97cc3bfbcba9cbbf612f4c7e04b974816adae3e2 (patch)
treed35fc8583d82f4825a5da9fd0ebc4a7dc9e6bb70 /include/datetime/appointment.h
parent2a52d61b410b9d294c479ad53a06fb6f830b9605 (diff)
parent0492e95dbf6a1f6285a4701379adb6b7d8553d6b (diff)
downloadayatana-indicator-datetime-97cc3bfbcba9cbbf612f4c7e04b974816adae3e2.tar.gz
ayatana-indicator-datetime-97cc3bfbcba9cbbf612f4c7e04b974816adae3e2.tar.bz2
ayatana-indicator-datetime-97cc3bfbcba9cbbf612f4c7e04b974816adae3e2.zip
Merge branch 'tari01-pr/ubuntu-alarm'
Attributes GH PR #64: https://github.com/AyatanaIndicators/ayatana-indicator-datetime/pull/64
Diffstat (limited to 'include/datetime/appointment.h')
-rw-r--r--include/datetime/appointment.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/datetime/appointment.h b/include/datetime/appointment.h
index faf8a18..c563f33 100644
--- a/include/datetime/appointment.h
+++ b/include/datetime/appointment.h
@@ -1,5 +1,6 @@
/*
* Copyright 2013 Canonical Ltd.
+ * Copyright 2021 Robert Tari
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 3, as published
@@ -15,6 +16,7 @@
*
* Authors:
* Charles Kerr <charles.kerr@canonical.com>
+ * Robert Tari <robert@tari.in>
*/
#ifndef INDICATOR_DATETIME_APPOINTMENT_H
@@ -51,9 +53,9 @@ struct Alarm
struct Appointment
{
public:
- enum Type { EVENT, UBUNTU_ALARM };
+ enum Type { EVENT, ALARM };
Type type = EVENT;
- bool is_ubuntu_alarm() const { return type == UBUNTU_ALARM; }
+ bool is_alarm() const { return type == ALARM; }
std::string uid;
std::string source_uid;