diff options
author | Bill Zhu <bill.zhu@sun.com> | 2004-03-11 00:07:25 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2004-03-11 00:07:25 +0800 |
commit | e8e1b0b8234621a3fb0f0f56e4d20563ad0e8165 (patch) | |
tree | f309004366ecd46331ddec80ac709b72c7cd9e98 | |
parent | 7ded20cc1b1156a6b620b0365445ae87a4a6ae54 (diff) | |
download | gsoc2013-evolution-e8e1b0b8234621a3fb0f0f56e4d20563ad0e8165.tar.gz gsoc2013-evolution-e8e1b0b8234621a3fb0f0f56e4d20563ad0e8165.tar.zst gsoc2013-evolution-e8e1b0b8234621a3fb0f0f56e4d20563ad0e8165.zip |
Used the stock icon in confirm dialog.
2004-03-10 Bill Zhu <bill.zhu@sun.com>
* e-shell-startup-wizzard.c (key_press_event_callback): Used the
stock
icon in confirm dialog.
Fixes #55063
svn path=/trunk/; revision=25008
-rw-r--r-- | shell/ChangeLog | 7 | ||||
-rw-r--r-- | shell/e-shell-startup-wizard.c | 4 |
2 files changed, 9 insertions, 2 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index d5745789e8..de019dd64e 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,10 @@ +2004-03-10 Bill Zhu <bill.zhu@sun.com> + + * e-shell-startup-wizzard.c (key_press_event_callback): Used the stock + icon in confirm dialog. + + Fixes #55063 + 2004-03-06 Pratik V. Parikh <pratikvp@despammed.com> * e-shell-window-commands.c (command_quick_reference): Check that diff --git a/shell/e-shell-startup-wizard.c b/shell/e-shell-startup-wizard.c index dc5e349cc8..47f91d0f5f 100644 --- a/shell/e-shell-startup-wizard.c +++ b/shell/e-shell-startup-wizard.c @@ -791,8 +791,8 @@ key_press_event_callback (GtkWidget *widget, GTK_BUTTONS_NONE, confirmations); - gtk_dialog_add_button (confirm_dialog, _("Cancel"), GTK_RESPONSE_CANCEL); - gtk_dialog_add_button (confirm_dialog, _("Quit Assistant"), GTK_RESPONSE_OK); + gtk_dialog_add_button (confirm_dialog, GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL); + gtk_dialog_add_button (confirm_dialog, GTK_STOCK_QUIT, GTK_RESPONSE_OK); returnvalue = gtk_dialog_run (GTK_DIALOG (confirm_dialog)); gtk_widget_destroy (confirm_dialog); |