diff options
author | Renato Araujo Oliveira Filho <renato.filho@canonical.com> | 2016-03-21 14:32:39 -0300 |
---|---|---|
committer | Robert Tari <robert@tari.in> | 2021-07-05 00:44:12 +0200 |
commit | d1935f872fe600f224aa89eff3ab70a48d52c16d (patch) | |
tree | c29a046d47f09fc434b08e3c9f0aedb4cc700c65 /tests/actions-mock.h | |
parent | bf7746273c111b004c56a0868bb1702d96ecb67f (diff) | |
download | ayatana-indicator-datetime-d1935f872fe600f224aa89eff3ab70a48d52c16d.tar.gz ayatana-indicator-datetime-d1935f872fe600f224aa89eff3ab70a48d52c16d.tar.bz2 ayatana-indicator-datetime-d1935f872fe600f224aa89eff3ab70a48d52c16d.zip |
Make sure that the ocurrence time is used to build the url to launch external application.
Diffstat (limited to 'tests/actions-mock.h')
-rw-r--r-- | tests/actions-mock.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/actions-mock.h b/tests/actions-mock.h index 59a0912..346a8f6 100644 --- a/tests/actions-mock.h +++ b/tests/actions-mock.h @@ -57,8 +57,9 @@ public: void desktop_open_alarm_app() { m_history.push_back(DesktopOpenAlarmApp); } - void desktop_open_appointment(const Appointment& appt) { + void desktop_open_appointment(const Appointment& appt, const DateTime& dt) { m_appt = appt; + m_date_time = dt; m_history.push_back(DesktopOpenAppt); } void desktop_open_calendar_app(const DateTime& dt) { @@ -72,8 +73,9 @@ public: void phone_open_alarm_app() { m_history.push_back(PhoneOpenAlarmApp); } - void phone_open_appointment(const Appointment& appt) { + void phone_open_appointment(const Appointment& appt, const DateTime& dt) { m_appt = appt; + m_date_time = dt; m_history.push_back(PhoneOpenAppt); } void phone_open_calendar_app(const DateTime& dt) { |