aboutsummaryrefslogtreecommitdiffstats
path: root/filter/filter-datespec.c
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2003-01-15 06:47:19 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2003-01-15 06:47:19 +0800
commit8c18975c231c23e348fc687f085ac24c4cdf7354 (patch)
tree3f5e8d45084e5e522c96a055b14b204e989e5793 /filter/filter-datespec.c
parent3a7ecedd60c0c3813aea403894d260d467af8bda (diff)
downloadgsoc2013-evolution-8c18975c231c23e348fc687f085ac24c4cdf7354.tar
gsoc2013-evolution-8c18975c231c23e348fc687f085ac24c4cdf7354.tar.gz
gsoc2013-evolution-8c18975c231c23e348fc687f085ac24c4cdf7354.tar.bz2
gsoc2013-evolution-8c18975c231c23e348fc687f085ac24c4cdf7354.tar.lz
gsoc2013-evolution-8c18975c231c23e348fc687f085ac24c4cdf7354.tar.xz
gsoc2013-evolution-8c18975c231c23e348fc687f085ac24c4cdf7354.tar.zst
gsoc2013-evolution-8c18975c231c23e348fc687f085ac24c4cdf7354.zip
Change dialog from OK/Cancel to Cancel/OK to match HIG. (rule_edit):
* rule-editor.c (rule_add): Change dialog from OK/Cancel to Cancel/OK to match HIG. (rule_edit): Likewise. (rule_editor_construct): Likewise. * rule-context.c (rule_context_add_rule_gui): Change dialog from OK/Cancel to Cancel/OK to match HIG. * filter-datespec.c (button_clicked): Change dialog from OK/Cancel to Cancel/OK to match HIG. svn path=/trunk/; revision=19470
Diffstat (limited to 'filter/filter-datespec.c')
-rw-r--r--filter/filter-datespec.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/filter/filter-datespec.c b/filter/filter-datespec.c
index 058bcb6407..21435c37be 100644
--- a/filter/filter-datespec.c
+++ b/filter/filter-datespec.c
@@ -415,8 +415,10 @@ button_clicked (GtkButton *button, FilterDatespec *fds)
dialog = (GtkDialog *) gtk_dialog_new ();
gtk_window_set_title ((GtkWindow *) dialog, _("Select a time to compare against"));
- gtk_dialog_add_buttons (dialog, GTK_STOCK_OK, GTK_RESPONSE_ACCEPT,
- GTK_STOCK_CANCEL, GTK_RESPONSE_REJECT, NULL);
+ gtk_dialog_add_buttons (dialog,
+ GTK_STOCK_CANCEL, GTK_RESPONSE_REJECT,
+ GTK_STOCK_OK, GTK_RESPONSE_ACCEPT,
+ NULL);
p->notebook_type = glade_xml_get_widget (gui, "notebook_type");
p->option_type = glade_xml_get_widget (gui, "option_type");