diff options
author | Christopher James Lahey <clahey@ximian.com> | 2002-04-25 01:57:27 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2002-04-25 01:57:27 +0800 |
commit | 9678428593ad57ea4f802ff4b9ee1440c3f75605 (patch) | |
tree | 0a64d8d8550a5be4e055f069f88fb93ccbba303f /addressbook/gui/widgets | |
parent | 38e985a2e4257006e6f0d1f0c1b2097a6394e888 (diff) | |
download | gsoc2013-evolution-9678428593ad57ea4f802ff4b9ee1440c3f75605.tar.gz gsoc2013-evolution-9678428593ad57ea4f802ff4b9ee1440c3f75605.tar.zst gsoc2013-evolution-9678428593ad57ea4f802ff4b9ee1440c3f75605.zip |
Added a "Browse..." button to switch to a different addressbook folder.
2002-04-24 Christopher James Lahey <clahey@ximian.com>
* gui/component/select-names/e-select-names.c,
gui/component/select-names/e-select-names.h,
gui/component/select-names/select-names.glade (folder_browse):
Added a "Browse..." button to switch to a different addressbook
folder.
* gui/widgets/e-addressbook-util.c (e_addressbook_transfer_cards):
Moved extern EvolutionShellClient out of this function so that
it'd be more readable.
svn path=/trunk/; revision=16574
Diffstat (limited to 'addressbook/gui/widgets')
-rw-r--r-- | addressbook/gui/widgets/e-addressbook-util.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/addressbook/gui/widgets/e-addressbook-util.c b/addressbook/gui/widgets/e-addressbook-util.c index 13d219af33..b1c40bd483 100644 --- a/addressbook/gui/widgets/e-addressbook-util.c +++ b/addressbook/gui/widgets/e-addressbook-util.c @@ -322,11 +322,12 @@ got_book_cb (EBook *book, gpointer closure) process_unref (process); } +extern EvolutionShellClient *global_shell_client; + void e_addressbook_transfer_cards (EBook *source, GList *cards /* adopted */, gboolean delete_from_source, GtkWindow *parent_window) { const char *allowed_types[] = { "contacts", NULL }; - extern EvolutionShellClient *global_shell_client; GNOME_Evolution_Folder *folder; static char *last_uri = NULL; CardCopyProcess *process; |