diff options
author | Rodrigo Moya <rodrigo@ximian.com> | 2004-02-19 06:38:31 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@src.gnome.org> | 2004-02-19 06:38:31 +0800 |
commit | 4d26bc639d443e1dfcef15145510e9befe7831cb (patch) | |
tree | f6f599ca7ff1123a3cd7b621969dfe28125ed820 /calendar/gui/alarm-notify | |
parent | ec65aecb7f3b36c3c41b91de25a7d43609d6c603 (diff) | |
download | gsoc2013-evolution-4d26bc639d443e1dfcef15145510e9befe7831cb.tar.gz gsoc2013-evolution-4d26bc639d443e1dfcef15145510e9befe7831cb.tar.zst gsoc2013-evolution-4d26bc639d443e1dfcef15145510e9befe7831cb.zip |
remove the client from the queue also.
2004-02-18 Rodrigo Moya <rodrigo@ximian.com>
* gui/alarm-notify/alarm-notify.c (free_client_hash): remove the client
from the queue also.
svn path=/trunk/; revision=24790
Diffstat (limited to 'calendar/gui/alarm-notify')
-rw-r--r-- | calendar/gui/alarm-notify/alarm-notify.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/calendar/gui/alarm-notify/alarm-notify.c b/calendar/gui/alarm-notify/alarm-notify.c index 53aacea4aa..75d9cb9317 100644 --- a/calendar/gui/alarm-notify/alarm-notify.c +++ b/calendar/gui/alarm-notify/alarm-notify.c @@ -82,6 +82,8 @@ free_client_hash (gpointer key, gpointer value, gpointer user_data) char *uri = key; ECal *client = value; + alarm_queue_remove_client (client); + g_free (uri); g_object_unref (client); } |