diff options
author | Not Zed <NotZed@Ximian.com> | 2004-04-28 14:38:20 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-04-28 14:38:20 +0800 |
commit | 6674bdd55b8b29b1bde4b032f6933dfcfb967107 (patch) | |
tree | 34edbe55104d4083ef559df43ff93f8888228d37 /filter/filter-input.c | |
parent | 4e99c39bcf70a2b15d4bd6dbb609ef0aba8d9675 (diff) | |
download | gsoc2013-evolution-6674bdd55b8b29b1bde4b032f6933dfcfb967107.tar.gz gsoc2013-evolution-6674bdd55b8b29b1bde4b032f6933dfcfb967107.tar.zst gsoc2013-evolution-6674bdd55b8b29b1bde4b032f6933dfcfb967107.zip |
fix a warning.
2004-04-28 Not Zed <NotZed@Ximian.com>
* filter-option.c (filter_option_add): fix a warning.
** Changed error messages to use EError.
svn path=/trunk/; revision=25651
Diffstat (limited to 'filter/filter-input.c')
-rw-r--r-- | filter/filter-input.c | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/filter/filter-input.c b/filter/filter-input.c index ff5afe5337..021aa54a28 100644 --- a/filter/filter-input.c +++ b/filter/filter-input.c @@ -34,6 +34,7 @@ #include "filter-input.h" #include "e-util/e-sexp.h" +#include "widgets/misc/e-error.h" #define d(x) @@ -165,7 +166,6 @@ validate (FilterElement *fe) { FilterInput *fi = (FilterInput *)fe; gboolean valid = TRUE; - GtkWidget *dialog; if (fi->values && !strcmp (fi->type, "regex")) { const char *pattern; @@ -188,14 +188,7 @@ validate (FilterElement *fe) GtkWidget member pointing to the value gotten with ::get_widget() so that we can get the parent window here. */ - dialog = gtk_message_dialog_new (NULL, GTK_DIALOG_DESTROY_WITH_PARENT, - GTK_MESSAGE_ERROR, GTK_BUTTONS_CLOSE, - _("Error in regular expression '%s':\n%s"), - pattern, regmsg); - - gtk_dialog_set_has_separator ((GtkDialog *) dialog, FALSE); - gtk_dialog_run ((GtkDialog *) dialog); - gtk_widget_destroy (dialog); + e_error_run(NULL, "filter:bad-regexp", pattern, regmsg, NULL); g_free (regmsg); valid = FALSE; |