aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell-importer.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@src.gnome.org>2008-08-09 07:12:59 +0800
committerMatthew Barnes <mbarnes@src.gnome.org>2008-08-09 07:12:59 +0800
commit278c1fa77ba74f70a8d55e6d679f73372034fb14 (patch)
treebaff39d35a883b802328488a8ab037ff2585e2db /shell/e-shell-importer.c
parent7903e73970cbf89f4a49c5f7083b205b8670d0be (diff)
downloadgsoc2013-evolution-278c1fa77ba74f70a8d55e6d679f73372034fb14.tar
gsoc2013-evolution-278c1fa77ba74f70a8d55e6d679f73372034fb14.tar.gz
gsoc2013-evolution-278c1fa77ba74f70a8d55e6d679f73372034fb14.tar.bz2
gsoc2013-evolution-278c1fa77ba74f70a8d55e6d679f73372034fb14.tar.lz
gsoc2013-evolution-278c1fa77ba74f70a8d55e6d679f73372034fb14.tar.xz
gsoc2013-evolution-278c1fa77ba74f70a8d55e6d679f73372034fb14.tar.zst
gsoc2013-evolution-278c1fa77ba74f70a8d55e6d679f73372034fb14.zip
Work through more compilation errors.
Rewrite EMultiConfigDialog to not use ETable. svn path=/branches/kill-bonobo/; revision=35942
Diffstat (limited to 'shell/e-shell-importer.c')
-rw-r--r--shell/e-shell-importer.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/shell/e-shell-importer.c b/shell/e-shell-importer.c
index bf2a67f9b0..adf662aacf 100644
--- a/shell/e-shell-importer.c
+++ b/shell/e-shell-importer.c
@@ -85,7 +85,6 @@ typedef struct _ImportDialogImporterPage {
} ImportDialogImporterPage;
typedef struct _ImportData {
- EShell *shell;
EShellWindow *window;
GladeXML *wizard;
@@ -242,29 +241,6 @@ item_selected (GtkWidget *item,
filename_changed(data->filepage->filename, data);
}
-#if 0
-static int
-compare_info_name (const void *data1, const void *data2)
-{
- const Bonobo_ServerInfo *info1 = (Bonobo_ServerInfo *)data1;
- const Bonobo_ServerInfo *info2 = (Bonobo_ServerInfo *)data2;
- const char *name1 = get_name_from_component_info (info1);
- const char *name2 = get_name_from_component_info (info2);
-
- /* If we can't find a name for a plug-in, its iid will be used
- * for display. Put such plug-ins at the end of the list since
- * their displayed name won't be really user-friendly
- */
- if (name1 == NULL) {
- return -1;
- }
- if (name2 == NULL) {
- return 1;
- }
- return g_utf8_collate (name1, name2);
-}
-#endif
-
static ImportDialogFilePage *
importer_file_page_new (ImportData *data)
{
@@ -678,7 +654,6 @@ e_shell_importer_start_import (EShellWindow *shell_window)
dialog_open = TRUE;
data->window = shell_window;
- data->shell = e_shell_window_peek_shell (data->window);
gladefile = g_build_filename (EVOLUTION_GLADEDIR, "import.glade", NULL);
data->wizard = glade_xml_new (gladefile, NULL, NULL);