diff options
| author | Charles Kerr <charles.kerr@canonical.com> | 2014-12-08 23:08:41 +0000 |
|---|---|---|
| committer | CI Train Bot <ci-train-bot@canonical.com> | 2014-12-08 23:08:41 +0000 |
| commit | 13688fe9fffc1d9dad3bf5918efcc8221846c82b (patch) | |
| tree | e6c54b125ac8689581d32678163c57514e8a0c96 /tests/test-alarm-queue.cpp | |
| parent | 5186d1c20416dd4726de863b638a49b885ef7b9a (diff) | |
| parent | 95bc85d108e3564d98f26b7ad17fcc72b2966371 (diff) | |
| download | ayatana-indicator-datetime-13688fe9fffc1d9dad3bf5918efcc8221846c82b.tar.gz ayatana-indicator-datetime-13688fe9fffc1d9dad3bf5918efcc8221846c82b.tar.bz2 ayatana-indicator-datetime-13688fe9fffc1d9dad3bf5918efcc8221846c82b.zip | |
Add support for x-canonical-alarm and x-canonical-disabled tags in VTODO categories so that disabled alarms will not be displayed. Fixes: #1387231
Approved by: Ted Gould, PS Jenkins bot
Diffstat (limited to 'tests/test-alarm-queue.cpp')
| -rw-r--r-- | tests/test-alarm-queue.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test-alarm-queue.cpp b/tests/test-alarm-queue.cpp index d2de8ac..12ffe92 100644 --- a/tests/test-alarm-queue.cpp +++ b/tests/test-alarm-queue.cpp @@ -80,7 +80,7 @@ protected: a1.summary = "Alarm"; a1.summary = "http://www.example.com/"; a1.uid = "example"; - a1.has_alarms = true; + a1.type = Appointment::UBUNTU_ALARM; a1.begin = tomorrow_begin; a1.end = tomorrow_end; @@ -92,7 +92,7 @@ protected: a2.summary = "Other Text"; a2.summary = "http://www.monkey.com/"; a2.uid = "monkey"; - a2.has_alarms = false; + a1.type = Appointment::EVENT; a2.begin = ubermorgen_begin; a2.end = ubermorgen_end; |
