diff options
author | Sivaiah Nallagatla <snallagatla@novell.com> | 2004-05-03 13:46:20 +0800 |
---|---|---|
committer | Sivaiah Nallagatla <siva@src.gnome.org> | 2004-05-03 13:46:20 +0800 |
commit | f954da0a50049423246a3ba666f4172db4839eea (patch) | |
tree | 9eb801a375d2f5b7def1614d7e4ec52395be0fec /addressbook | |
parent | 73f7295a209cd6c14ed091d8fa8c763d547d51e4 (diff) | |
download | gsoc2013-evolution-f954da0a50049423246a3ba666f4172db4839eea.tar.gz gsoc2013-evolution-f954da0a50049423246a3ba666f4172db4839eea.tar.zst gsoc2013-evolution-f954da0a50049423246a3ba666f4172db4839eea.zip |
see if the selected group is groupwise one and setup the relative uri and
2004-05-02 Sivaiah Nallagatla <snallagatla@novell.com>
* gui/component/addressbook-config.c (dialog_to_source) : see if the selected
group is groupwise one and setup the relative uri and other properties into
e-source
svn path=/trunk/; revision=25740
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/ChangeLog | 6 | ||||
-rw-r--r-- | addressbook/gui/widgets/eab-gui-util.c | 3 |
2 files changed, 8 insertions, 1 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index a82bd5c531..486b2c2456 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,9 @@ +2004-05-02 Sivaiah Nallagatla <snallagatla@novell.com> + + * gui/component/addressbook-config.c (dialog_to_source) : see if the selected + group is groupwise one and setup the relative uri and other properties into + e-source + 2004-05-01 Larry Ewing <lewing@ximian.com> * gui/component/addressbook-config.c: sensitize the details dialog diff --git a/addressbook/gui/widgets/eab-gui-util.c b/addressbook/gui/widgets/eab-gui-util.c index eef9988ce3..d934942fea 100644 --- a/addressbook/gui/widgets/eab-gui-util.c +++ b/addressbook/gui/widgets/eab-gui-util.c @@ -470,7 +470,8 @@ eab_select_source (const gchar *title, const gchar *message, const gchar *select GtkWidget *scrolled_window; gint response; - source_list = addressbook_component_peek_source_list (addressbook_component_peek ()); + if (!e_book_get_addressbooks (&source_list, NULL)) + return NULL; dialog = gtk_dialog_new_with_buttons (title, parent, GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT, |