aboutsummaryrefslogtreecommitdiffstats
path: root/filter/filter-datespec.c
diff options
context:
space:
mode:
Diffstat (limited to 'filter/filter-datespec.c')
-rw-r--r--filter/filter-datespec.c11
1 files changed, 2 insertions, 9 deletions
diff --git a/filter/filter-datespec.c b/filter/filter-datespec.c
index f913b20ed8..6aa0b9cfc6 100644
--- a/filter/filter-datespec.c
+++ b/filter/filter-datespec.c
@@ -20,7 +20,6 @@
* Boston, MA 02111-1307, USA.
*/
-
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
@@ -36,6 +35,7 @@
#include "filter-datespec.h"
#include "e-util/e-sexp.h"
+#include "widgets/misc/e-error.h"
#define d(x)
@@ -173,7 +173,6 @@ static gboolean
validate (FilterElement *fe)
{
FilterDatespec *fds = (FilterDatespec *) fe;
- GtkWidget *dialog;
gboolean valid;
valid = fds->type != FDST_UNKNOWN;
@@ -182,13 +181,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,
- "%s", _("You must choose a date."));
-
- gtk_dialog_set_has_separator ((GtkDialog *) dialog, FALSE);
- gtk_dialog_run ((GtkDialog *) dialog);
- gtk_widget_destroy (dialog);
+ e_error_run(NULL, "filter:no-date", NULL);
}
return valid;