[Fix #17441, Crash trying to import Multiple VCard file into LDAP

folder.]

* e-shell-importer.c (show_error): Add a NULL in the call to
`gnome_message_box_new()'.

svn path=/trunk/; revision=15333
This commit is contained in:
Ettore Perazzoli
2002-01-15 22:31:45 +00:00
parent 7c0893f81c
commit 33748a6445
2 changed files with 27 additions and 6 deletions

View File

@ -1,3 +1,11 @@
2002-01-15 Ettore Perazzoli <ettore@ximian.com>
[Fix #17441, Crash trying to import Multiple VCard file into LDAP
folder.]
* e-shell-importer.c (show_error): Add a NULL in the call to
`gnome_message_box_new()'.
2001-12-14 Michael Meeks <michael@ximian.com>
* e-shell-view.c (set_current_notebook_page): re-order

View File

@ -379,7 +379,19 @@ get_iid_for_filetype (const char *filename)
return NULL;
}
}
static void
show_error (const char *message,
const char *title)
{
GtkWidget *box;
box = gnome_message_box_new (message, GNOME_MESSAGE_BOX_ERROR, GNOME_STOCK_BUTTON_OK, NULL);
gtk_window_set_title (GTK_WINDOW (box), title);
gtk_widget_show (box);
}
static void
start_import (const char *folderpath,
const char *filename,
@ -395,7 +407,7 @@ start_import (const char *folderpath,
char *message;
message = g_strdup_printf (_("File %s does not exist"), filename);
e_notice (NULL, GNOME_MESSAGE_BOX_ERROR, message);
show_error (message, _("Evolution Error"));
g_free (message);
return;
@ -405,8 +417,7 @@ start_import (const char *folderpath,
localpath = "/" E_LOCAL_STORAGE_NAME "/";
if (folderpath != NULL) {
if (strncmp (folderpath, localpath, strlen (localpath))) {
e_notice (NULL, GNOME_MESSAGE_BOX_ERROR,
_("You may only import to local folders"));
show_error (_("You may only import to local folders"), _("Evolution Error"));
return;
}
}
@ -422,7 +433,7 @@ start_import (const char *folderpath,
char *message;
message = g_strdup_printf (_("There is no importer that is able to handle\n%s"), filename);
e_notice (NULL, GNOME_MESSAGE_BOX_ERROR, message);
show_error (message, _("Evolution Error"));
g_free (message);
return;
@ -472,7 +483,7 @@ start_import (const char *folderpath,
if (evolution_importer_client_load_file (icd->client, filename, folderpath) == FALSE) {
label = g_strdup_printf (_("Error loading %s"), filename);
e_notice (NULL, GNOME_MESSAGE_BOX_ERROR, label);
show_error (label, _("Evolution Error"));
gtk_label_set_text (GTK_LABEL (icd->contents), label);
g_free (label);
@ -900,6 +911,8 @@ folder_selected (EShellFolderSelectionDialog *dialog,
filename = gnome_file_entry_get_full_path (GNOME_FILE_ENTRY (data->filepage->filename), FALSE);
gtk_widget_destroy (data->dialog);
gtk_widget_hide (GTK_WIDGET (dialog));
start_import (path, filename, iid);
g_free (iid);