diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/datetime/planner-aggregate.h | 2 | ||||
-rw-r--r-- | include/datetime/planner-snooze.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/datetime/planner-aggregate.h b/include/datetime/planner-aggregate.h index eeca9b7..892e71a 100644 --- a/include/datetime/planner-aggregate.h +++ b/include/datetime/planner-aggregate.h @@ -38,7 +38,7 @@ public: virtual ~AggregatePlanner(); void add(const std::shared_ptr<Planner>&); - core::Property<std::vector<Appointment>>& appointments(); + core::Property<std::vector<Appointment>>& appointments() override; protected: class Impl; diff --git a/include/datetime/planner-snooze.h b/include/datetime/planner-snooze.h index 889c4f8..e2619fa 100644 --- a/include/datetime/planner-snooze.h +++ b/include/datetime/planner-snooze.h @@ -41,7 +41,7 @@ public: ~SnoozePlanner(); void add(const Appointment&); - core::Property<std::vector<Appointment>>& appointments(); + core::Property<std::vector<Appointment>>& appointments() override; protected: class Impl; |