aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/widgets/eab-gui-util.c
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2003-12-03 23:38:33 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2003-12-03 23:38:33 +0800
commit80df8875fb9654d3bd20b270cfcb746dd632c934 (patch)
tree63e09add4f4fbc58aabbbe762d611b1f864cf69a /addressbook/gui/widgets/eab-gui-util.c
parent7d18bf233dc8bfa4484fdd3d19e2c61efdbbf7cd (diff)
downloadgsoc2013-evolution-80df8875fb9654d3bd20b270cfcb746dd632c934.tar
gsoc2013-evolution-80df8875fb9654d3bd20b270cfcb746dd632c934.tar.gz
gsoc2013-evolution-80df8875fb9654d3bd20b270cfcb746dd632c934.tar.bz2
gsoc2013-evolution-80df8875fb9654d3bd20b270cfcb746dd632c934.tar.lz
gsoc2013-evolution-80df8875fb9654d3bd20b270cfcb746dd632c934.tar.xz
gsoc2013-evolution-80df8875fb9654d3bd20b270cfcb746dd632c934.tar.zst
gsoc2013-evolution-80df8875fb9654d3bd20b270cfcb746dd632c934.zip
Do not depend on e-folder-list.
* gui/component/addressbook-config.c: Do not depend on e-folder-list. * gui/component/select-names/e-select-names.c: Remove dependency on evolution-folder-selector-button. (e_addressbook_create_folder_selector): Just return a FIXME label for now. (folder_selected): #if 0 out. (e_select_names_init): Do not connect. * gui/component/select-names/e-select-names-manager.c (e_select_names_manager_activate_dialog): Don't get a shell_client arg anymore. (load_completion_books): Stub out. * gui/component/select-names/e-select-names.c (e_select_names_new): Don't get an EvolutionShellClient anymore. Don't create the folder selector button for now. * gui/component/select-names/e-select-names.h: Remove dependency on evolution-shell-client. * gui/component/select-names/e-select-names-bonobo.c: Remove dependency on evolution-shell-client. (impl_SelectNames_activate_dialog): Stub out. * gui/widgets/eab-gui-util.c: Remove dependency on evolution-shell-client. (eab_transfer_contacts): Stub out. * gui/main.c: Do not #include <evolution-shell-client.h>. * gui/e-itip-control.c: Do not #include <e-folder-selector-button.h> nor <evolution-shell-client.h>. (start_default_server): Return FALSE. (default_server_started_cb): Do not connect the "selected" signal on the button since it's now NULL. (button_selected_cb): #if 0 out. * gui/e-cal-list-view.h: Do not #include "evolution-activity-client.h". * gui/tasks-component.c (impl_createControls): Give an empty label for the status bar. * gui/e-day-view.h: Remove all deps on evolution-activity-client. svn path=/trunk/; revision=23596
Diffstat (limited to 'addressbook/gui/widgets/eab-gui-util.c')
-rw-r--r--addressbook/gui/widgets/eab-gui-util.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/addressbook/gui/widgets/eab-gui-util.c b/addressbook/gui/widgets/eab-gui-util.c
index 4fe37e6f73..bd4ed78463 100644
--- a/addressbook/gui/widgets/eab-gui-util.c
+++ b/addressbook/gui/widgets/eab-gui-util.c
@@ -33,8 +33,6 @@
#include <gnome.h>
-#include <shell/evolution-shell-client.h>
-
#include "addressbook/gui/contact-editor/e-contact-editor.h"
#include "addressbook/gui/contact-list-editor/e-contact-list-editor.h"
@@ -496,6 +494,7 @@ got_book_cb (EBook *book, EBookStatus status, gpointer closure)
void
eab_transfer_contacts (EBook *source, GList *contacts /* adopted */, gboolean delete_from_source, GtkWindow *parent_window)
{
+#if 0
EBook *dest;
const char *allowed_types[] = { "contacts/*", NULL };
GNOME_Evolution_Folder *folder;
@@ -521,14 +520,10 @@ eab_transfer_contacts (EBook *source, GList *contacts /* adopted */, gboolean de
desc = _("Copy contacts to");
}
-#if 0 /* EPFIXME */
evolution_shell_client_user_select_folder (global_shell_client,
parent_window,
desc, last_uri, allowed_types,
&folder);
-#else
- folder = NULL;
-#endif
if (!folder)
return;
@@ -554,6 +549,7 @@ eab_transfer_contacts (EBook *source, GList *contacts /* adopted */, gboolean de
e_book_async_load_uri (dest, folder->physicalUri, got_book_cb, process);
CORBA_free (folder);
+#endif
}
#include <Evolution-Composer.h>