aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2001-10-12 03:00:26 +0800
committerDan Winship <danw@src.gnome.org>2001-10-12 03:00:26 +0800
commitbb37bd26e75740861501809c32cc3c7c54fe40d6 (patch)
treeb1f9278f7f1932947e3dc833a6661103e928cddf /addressbook
parenta2db1f2033c6154f6906a8652f8e7567048b34f0 (diff)
downloadgsoc2013-evolution-bb37bd26e75740861501809c32cc3c7c54fe40d6.tar
gsoc2013-evolution-bb37bd26e75740861501809c32cc3c7c54fe40d6.tar.gz
gsoc2013-evolution-bb37bd26e75740861501809c32cc3c7c54fe40d6.tar.bz2
gsoc2013-evolution-bb37bd26e75740861501809c32cc3c7c54fe40d6.tar.lz
gsoc2013-evolution-bb37bd26e75740861501809c32cc3c7c54fe40d6.tar.xz
gsoc2013-evolution-bb37bd26e75740861501809c32cc3c7c54fe40d6.tar.zst
gsoc2013-evolution-bb37bd26e75740861501809c32cc3c7c54fe40d6.zip
Don't need this any more.
* gui/component/select-names/e-select-names.c (update_folder): Don't need this any more. svn path=/trunk/; revision=13590
Diffstat (limited to 'addressbook')
-rw-r--r--addressbook/ChangeLog5
-rw-r--r--addressbook/gui/component/select-names/e-select-names.c16
2 files changed, 5 insertions, 16 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog
index 21dbacb98b..22894f1dc9 100644
--- a/addressbook/ChangeLog
+++ b/addressbook/ChangeLog
@@ -1,3 +1,8 @@
+2001-10-11 Dan Winship <danw@ximian.com>
+
+ * gui/component/select-names/e-select-names.c (update_folder):
+ Don't need this any more.
+
2001-10-11 Jon Trowbridge <trow@ximian.com>
* gui/component/addressbook.c (new_contact_cb): Check that
diff --git a/addressbook/gui/component/select-names/e-select-names.c b/addressbook/gui/component/select-names/e-select-names.c
index 50476bfacb..de592dc01e 100644
--- a/addressbook/gui/component/select-names/e-select-names.c
+++ b/addressbook/gui/component/select-names/e-select-names.c
@@ -408,20 +408,6 @@ new_folder (EvolutionStorageListener *storage_listener,
}
static void
-update_folder (EvolutionStorageListener *storage_listener,
- const char *path,
- const char *display_name,
- ESelectNames *e_select_names)
-{
- ESelectNamesFolder *e_folder = g_hash_table_lookup(e_select_names->folders, path);
- if (e_folder) {
- g_free(e_folder->display_name);
- e_folder->display_name = g_strdup(e_folder->display_name);
- update_option_menu(e_select_names);
- }
-}
-
-static void
removed_folder (EvolutionStorageListener *storage_listener,
const char *path,
ESelectNames *e_select_names)
@@ -488,8 +474,6 @@ hookup_listener (ESelectNames *e_select_names,
gtk_signal_connect(GTK_OBJECT(listener), "new_folder",
GTK_SIGNAL_FUNC(new_folder), e_select_names);
- gtk_signal_connect(GTK_OBJECT(listener), "update_folder",
- GTK_SIGNAL_FUNC(update_folder), e_select_names);
gtk_signal_connect(GTK_OBJECT(listener), "removed_folder",
GTK_SIGNAL_FUNC(removed_folder), e_select_names);