aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRodrigo Moya <rodrigo@ximian.com>2003-12-01 23:17:31 +0800
committerRodrigo Moya <rodrigo@src.gnome.org>2003-12-01 23:17:31 +0800
commitd595778e6f897b1b47998c0c3862392358a0ee9c (patch)
tree3f0e43deb513edfab98f3560dce4691943604852
parent06521b959f3c825b9818ebb5366a6ad701828fc1 (diff)
downloadgsoc2013-evolution-d595778e6f897b1b47998c0c3862392358a0ee9c.tar
gsoc2013-evolution-d595778e6f897b1b47998c0c3862392358a0ee9c.tar.gz
gsoc2013-evolution-d595778e6f897b1b47998c0c3862392358a0ee9c.tar.bz2
gsoc2013-evolution-d595778e6f897b1b47998c0c3862392358a0ee9c.tar.lz
gsoc2013-evolution-d595778e6f897b1b47998c0c3862392358a0ee9c.tar.xz
gsoc2013-evolution-d595778e6f897b1b47998c0c3862392358a0ee9c.tar.zst
gsoc2013-evolution-d595778e6f897b1b47998c0c3862392358a0ee9c.zip
removed unneeded functions. (alarm_notify_add_calendar,
2003-12-01 Rodrigo Moya <rodrigo@ximian.com> * gui/alarm-notify/alarm-notify.c (add_uri_to_load, remove_uri_to_load): removed unneeded functions. (alarm_notify_add_calendar, alarm_notify_remove_calendar): no need anymore to add/remove URIs to load on startup to the configuration. svn path=/trunk/; revision=23525
-rw-r--r--calendar/ChangeLog7
-rw-r--r--calendar/gui/alarm-notify/alarm-notify.c109
2 files changed, 7 insertions, 109 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index 47a953f469..1ea0535647 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,5 +1,12 @@
2003-12-01 Rodrigo Moya <rodrigo@ximian.com>
+ * gui/alarm-notify/alarm-notify.c (add_uri_to_load, remove_uri_to_load):
+ removed unneeded functions.
+ (alarm_notify_add_calendar, alarm_notify_remove_calendar): no need
+ anymore to add/remove URIs to load on startup to the configuration.
+
+2003-12-01 Rodrigo Moya <rodrigo@ximian.com>
+
* gui/alarm-notify/save.c (save_calendars_to_load): removed this
function, since we now use the ESourceList to know what calendars
to load.
diff --git a/calendar/gui/alarm-notify/alarm-notify.c b/calendar/gui/alarm-notify/alarm-notify.c
index bb34ba8ef4..9e7f1335a8 100644
--- a/calendar/gui/alarm-notify/alarm-notify.c
+++ b/calendar/gui/alarm-notify/alarm-notify.c
@@ -129,112 +129,6 @@ alarm_notify_finalize (GObject *object)
-/* Looks for a canonicalized URI inside an array of URIs; returns the index
- * within the array or -1 if not found.
- */
-static int
-find_uri_index (GPtrArray *uris, const char *str_uri)
-{
- int i;
-
- for (i = 0; i < uris->len; i++) {
- char *uri;
-
- uri = uris->pdata[i];
- if (strcmp (uri, str_uri) == 0)
- break;
- }
-
- if (i == uris->len)
- return -1;
- else
- return i;
-}
-
-/* Frees an array of URIs and the URIs within it. */
-static void
-free_uris (GPtrArray *uris)
-{
- int i;
-
- for (i = 0; i < uris->len; i++) {
- char *uri;
-
- uri = uris->pdata[i];
- g_free (uri);
- }
-
- g_ptr_array_free (uris, TRUE);
-}
-
-/* Adds an URI to the list of calendars to load on startup */
-static void
-add_uri_to_load (const char *str_uri)
-{
- GPtrArray *loaded_uris;
- int i;
-
- loaded_uris = get_calendars_to_load ();
- if (!loaded_uris) {
- g_message ("add_uri_to_load(): Could not get the list of calendars to load; "
- "will not add `%s'", str_uri);
- return;
- }
-
- /* Look for the URI in the list of calendars to load */
-
- i = find_uri_index (loaded_uris, str_uri);
-
- /* We only need to add the URI if we didn't find it among the list of
- * calendars.
- */
- if (i != -1) {
- free_uris (loaded_uris);
- return;
- }
-
- g_ptr_array_add (loaded_uris, g_strdup (str_uri));
- save_calendars_to_load (loaded_uris);
-
- free_uris (loaded_uris);
-}
-
-/* Removes an URI from the list of calendars to load on startup */
-static void
-remove_uri_to_load (const char *str_uri)
-{
- GPtrArray *loaded_uris;
- char *loaded_uri;
- int i;
-
- loaded_uris = get_calendars_to_load ();
- if (!loaded_uris) {
- g_message ("remove_uri_to_load(): Could not get the list of calendars to load; "
- "will not add `%s'", str_uri);
- return;
- }
-
- /* Look for the URI in the list of calendars to load */
-
- i = find_uri_index (loaded_uris, str_uri);
-
- /* If we didn't find it, there is no need to remove it */
- if (i == -1) {
- free_uris (loaded_uris);
- return;
- }
-
- loaded_uri = loaded_uris->pdata[i];
- g_free (loaded_uri);
-
- g_ptr_array_remove_index (loaded_uris, i);
- save_calendars_to_load (loaded_uris);
-
- free_uris (loaded_uris);
-}
-
-
-
/**
* alarm_notify_new:
*
@@ -283,8 +177,6 @@ alarm_notify_add_calendar (AlarmNotify *an, const char *str_uri, gboolean load_a
if (client) {
if (e_cal_open (client, FALSE, NULL)) {
- add_uri_to_load (str_uri);
-
g_hash_table_insert (priv->uri_client_hash,
g_strdup (str_uri), client);
}
@@ -305,5 +197,4 @@ alarm_notify_remove_calendar (AlarmNotify *an, const char *str_uri)
g_hash_table_remove (priv->uri_client_hash, str_uri);
}
- remove_uri_to_load (str_uri);
}