aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/component/select-names/e-select-names.h
diff options
context:
space:
mode:
authorChris Toshok <toshok@ximian.com>2001-08-18 10:06:55 +0800
committerChris Toshok <toshok@src.gnome.org>2001-08-18 10:06:55 +0800
commit949a6ef6dcbf28e1bb9b927eae734994fcfa8e42 (patch)
tree5468721d43ea5021c4bc14d5ded4ce7ab96e2ca1 /addressbook/gui/component/select-names/e-select-names.h
parent9e73a0deea0451db383962a087f9bc0f966fd98f (diff)
downloadgsoc2013-evolution-949a6ef6dcbf28e1bb9b927eae734994fcfa8e42.tar
gsoc2013-evolution-949a6ef6dcbf28e1bb9b927eae734994fcfa8e42.tar.gz
gsoc2013-evolution-949a6ef6dcbf28e1bb9b927eae734994fcfa8e42.tar.bz2
gsoc2013-evolution-949a6ef6dcbf28e1bb9b927eae734994fcfa8e42.tar.lz
gsoc2013-evolution-949a6ef6dcbf28e1bb9b927eae734994fcfa8e42.tar.xz
gsoc2013-evolution-949a6ef6dcbf28e1bb9b927eae734994fcfa8e42.tar.zst
gsoc2013-evolution-949a6ef6dcbf28e1bb9b927eae734994fcfa8e42.zip
rename physical_uri to uri, since it includes the addressbook.db for file:
2001-08-17 Chris Toshok <toshok@ximian.com> * gui/component/select-names/e-select-names.c: (struct ESelectNamesFolder): rename physical_uri to uri, since it includes the addressbook.db for file: uris. (e_select_names_folder_free): physical_uri => uri. (e_select_names_option_activated): physical_uri => uri, and we don't need to strdup_printf "addressbook.db" onto the end anymore. (new_folder): if the physical_uri is a file: uri, append /addressbook.db onto it. (hookup_listener): new function, split out lots of code from e_select_names_hookup_shell_listener. (e_select_names_hookup_shell_listeners): rename e_select_names_hookup_shell_listener to this, and hookup both the local and "Other Contacts" listener, using hookup_listener. (e_select_names_destroy): disconnect from the other_contacts_listener and unref it. * gui/component/select-names/e-select-names.h (struct _ESelectNames): add a listener for Other Contacts, and rename "listener" to "local_listener." svn path=/trunk/; revision=12187
Diffstat (limited to 'addressbook/gui/component/select-names/e-select-names.h')
-rw-r--r--addressbook/gui/component/select-names/e-select-names.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/addressbook/gui/component/select-names/e-select-names.h b/addressbook/gui/component/select-names/e-select-names.h
index 918dbc5794..75dc3a6af0 100644
--- a/addressbook/gui/component/select-names/e-select-names.h
+++ b/addressbook/gui/component/select-names/e-select-names.h
@@ -73,7 +73,8 @@ struct _ESelectNames
GtkWidget *categories;
GtkWidget *categories_entry;
GtkWidget *search_entry;
- EvolutionStorageListener *listener;
+ EvolutionStorageListener *local_listener;
+ EvolutionStorageListener *other_contacts_listener;
GHashTable *folders;
char *def;
};