diff options
| author | Charles Kerr <charles.kerr@canonical.com> | 2015-04-05 17:27:52 -0500 |
|---|---|---|
| committer | Charles Kerr <charles.kerr@canonical.com> | 2015-04-05 17:27:52 -0500 |
| commit | 62d68e6453c0ad69ff4d71099441a8151e9a9bea (patch) | |
| tree | 0ff1e3826ac919027bf3943a9ba1e7a4921c5f07 /src/appointment.cpp | |
| parent | e1aba742725c76257bd6845c93d3ac9a14d32089 (diff) | |
| download | ayatana-indicator-datetime-62d68e6453c0ad69ff4d71099441a8151e9a9bea.tar.gz ayatana-indicator-datetime-62d68e6453c0ad69ff4d71099441a8151e9a9bea.tar.bz2 ayatana-indicator-datetime-62d68e6453c0ad69ff4d71099441a8151e9a9bea.zip | |
fix misuse of ECalComponentAlarmInstance's fields.
Diffstat (limited to 'src/appointment.cpp')
| -rw-r--r-- | src/appointment.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/appointment.cpp b/src/appointment.cpp index 236c5f4..1edd93c 100644 --- a/src/appointment.cpp +++ b/src/appointment.cpp @@ -31,8 +31,7 @@ bool Alarm::operator==(const Alarm& that) const { return (text==that.text) && (audio_url==that.audio_url) - && (this->time==that.time) - && (duration==that.duration); + && (this->time==that.time); } bool Appointment::operator==(const Appointment& that) const |
