diff options
author | Dan Winship <danw@src.gnome.org> | 2003-03-25 23:49:19 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2003-03-25 23:49:19 +0800 |
commit | fea6083abffc47a4f9fd2d8988e924ad19a394c3 (patch) | |
tree | 83e852874848d3eddec8e85ac5f4b6431ed0f202 /mail/mail-account-editor.c | |
parent | ce81bdab983d9d3277de70c4d55286a6481cb42e (diff) | |
download | gsoc2013-evolution-fea6083abffc47a4f9fd2d8988e924ad19a394c3.tar.gz gsoc2013-evolution-fea6083abffc47a4f9fd2d8988e924ad19a394c3.tar.zst gsoc2013-evolution-fea6083abffc47a4f9fd2d8988e924ad19a394c3.zip |
Update for e_notice move (apply_changes): Pass a parent_window to e_notice
* mail-account-editor.c: Update for e_notice move
(apply_changes): Pass a parent_window to e_notice
* mail-account-gui.c: Update for e_notice move.
(mail_account_gui_save): Pass a parent_window to e_notice
* mail-callbacks.c: Update for e_notice move
* mail-local.c: Likewise
* mail-signature-editor.c: Likewise
* mail-vfolder.c: Likewise
svn path=/trunk/; revision=20502
Diffstat (limited to 'mail/mail-account-editor.c')
-rw-r--r-- | mail/mail-account-editor.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/mail-account-editor.c b/mail/mail-account-editor.c index 0183ddca1f..b4cdbc7cef 100644 --- a/mail/mail-account-editor.c +++ b/mail/mail-account-editor.c @@ -30,7 +30,7 @@ #include <stdlib.h> #include <string.h> #include <camel/camel-url.h> -#include <gal/widgets/e-gui-utils.h> +#include <e-util/e-dialog-utils.h> #include "mail-account-editor.h" #include "mail-session.h" @@ -99,7 +99,7 @@ apply_changes (MailAccountEditor *editor) if (page != -1) { gtk_notebook_set_current_page (editor->notebook, page); gtk_widget_grab_focus (incomplete); - e_notice (NULL, GTK_MESSAGE_ERROR, _("You have not filled in all of the required information.")); + e_notice (editor, GTK_MESSAGE_ERROR, _("You have not filled in all of the required information.")); return FALSE; } |