From 31204c9cc21ec32c8006124cf18763161daa99d2 Mon Sep 17 00:00:00 2001 From: Jonathon Jongsma Date: Mon, 7 Dec 2009 10:19:37 -0600 Subject: Port all error code to use GObject-ified EAlert / EAlertDialog The changes are mainly including the e-alert-header.h header instead of just e-alert.h. This allows us to include e-alert.h in non-UI situations when necessary. --- plugins/backup-restore/backup-restore.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'plugins/backup-restore') diff --git a/plugins/backup-restore/backup-restore.c b/plugins/backup-restore/backup-restore.c index 9f3413cbbe..bc7766e861 100644 --- a/plugins/backup-restore/backup-restore.c +++ b/plugins/backup-restore/backup-restore.c @@ -33,7 +33,7 @@ #include #include "mail/em-config.h" #include "mail/em-account-editor.h" -#include "e-util/e-alert.h" +#include "e-util/e-alert-dialog.h" #include "e-util/e-util.h" #include "e-util/e-dialog-utils.h" #include "shell/e-shell-utils.h" @@ -104,11 +104,11 @@ dialog_prompt_user(GtkWindow *parent, const gchar *string, const gchar *tag, con EAlert *alert = NULL; va_start(ap, arg0); - alert = e_alert_newv(tag, arg0, ap); + alert = e_alert_new_valist(tag, arg0, ap); va_end(ap); - mbox = e_alert_new_dialog (parent, alert); - e_alert_free (alert); + mbox = e_alert_dialog_new (parent, alert); + g_object_unref (alert); check = gtk_check_button_new_with_mnemonic (string); /* We should hardcode this to true */ -- cgit v1.2.3