aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@helixcode.com>2000-08-10 06:51:11 +0800
committerFederico Mena Quintero <federico@src.gnome.org>2000-08-10 06:51:11 +0800
commitd83e3ba3128794bf8b5fba06df9c550d56ef51ee (patch)
treeeec23701ba250dd5244c07e1ef04542703809127
parenteb23edd391e59e62a149446d0b0e8b1c345f1227 (diff)
downloadgsoc2013-evolution-d83e3ba3128794bf8b5fba06df9c550d56ef51ee.tar
gsoc2013-evolution-d83e3ba3128794bf8b5fba06df9c550d56ef51ee.tar.gz
gsoc2013-evolution-d83e3ba3128794bf8b5fba06df9c550d56ef51ee.tar.bz2
gsoc2013-evolution-d83e3ba3128794bf8b5fba06df9c550d56ef51ee.tar.lz
gsoc2013-evolution-d83e3ba3128794bf8b5fba06df9c550d56ef51ee.tar.xz
gsoc2013-evolution-d83e3ba3128794bf8b5fba06df9c550d56ef51ee.tar.zst
gsoc2013-evolution-d83e3ba3128794bf8b5fba06df9c550d56ef51ee.zip
Oops, subtract the new alarm's trigger time from the current time.
2000-08-09 Federico Mena Quintero <federico@helixcode.com> * gui/alarm.c (pop_alarm): Oops, subtract the new alarm's trigger time from the current time. svn path=/trunk/; revision=4674
-rw-r--r--calendar/ChangeLog5
-rw-r--r--calendar/gui/alarm-notify/alarm.c2
-rw-r--r--calendar/gui/alarm.c2
3 files changed, 7 insertions, 2 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index 51565e559e..445d11e473 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,8 @@
+2000-08-09 Federico Mena Quintero <federico@helixcode.com>
+
+ * gui/alarm.c (pop_alarm): Oops, subtract the new alarm's trigger
+ time from the current time.
+
2000-08-09 Christopher James Lahey <clahey@helixcode.com>
* cal-client/cal-client.c: Fixed a warning.
diff --git a/calendar/gui/alarm-notify/alarm.c b/calendar/gui/alarm-notify/alarm.c
index 257be27ec5..c89b65ff5e 100644
--- a/calendar/gui/alarm-notify/alarm.c
+++ b/calendar/gui/alarm-notify/alarm.c
@@ -97,7 +97,7 @@ pop_alarm (void)
now = time (NULL);
new_ar = alarms->data;
- if (!setup_itimer (new_ar->trigger)) {
+ if (!setup_itimer (new_ar->trigger - now)) {
g_message ("pop_alarm(): Could not reset the timer! "
"Weird things will happen.");
diff --git a/calendar/gui/alarm.c b/calendar/gui/alarm.c
index 257be27ec5..c89b65ff5e 100644
--- a/calendar/gui/alarm.c
+++ b/calendar/gui/alarm.c
@@ -97,7 +97,7 @@ pop_alarm (void)
now = time (NULL);
new_ar = alarms->data;
- if (!setup_itimer (new_ar->trigger)) {
+ if (!setup_itimer (new_ar->trigger - now)) {
g_message ("pop_alarm(): Could not reset the timer! "
"Weird things will happen.");