diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2003-01-15 06:47:19 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2003-01-15 06:47:19 +0800 |
commit | 8c18975c231c23e348fc687f085ac24c4cdf7354 (patch) | |
tree | 3f5e8d45084e5e522c96a055b14b204e989e5793 /filter/rule-context.c | |
parent | 3a7ecedd60c0c3813aea403894d260d467af8bda (diff) | |
download | gsoc2013-evolution-8c18975c231c23e348fc687f085ac24c4cdf7354.tar.gz 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/rule-context.c')
-rw-r--r-- | filter/rule-context.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/filter/rule-context.c b/filter/rule-context.c index 4cf8071f5a..37f682230e 100644 --- a/filter/rule-context.c +++ b/filter/rule-context.c @@ -681,8 +681,10 @@ rule_context_add_rule_gui (RuleContext *rc, FilterRule *rule, const char *title, gtk_widget_show (widget); dialog = (GtkDialog *) gtk_dialog_new (); - 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); gtk_window_set_title ((GtkWindow *) dialog, title); gtk_window_set_default_size ((GtkWindow *) dialog, 600, 400); |