aboutsummaryrefslogtreecommitdiff
path: root/hildon/hildon-wizard-dialog.c
diff options
context:
space:
mode:
Diffstat (limited to 'hildon/hildon-wizard-dialog.c')
-rw-r--r--hildon/hildon-wizard-dialog.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/hildon/hildon-wizard-dialog.c b/hildon/hildon-wizard-dialog.c
index 17c1842..d4b0948 100644
--- a/hildon/hildon-wizard-dialog.c
+++ b/hildon/hildon-wizard-dialog.c
@@ -55,6 +55,7 @@
#include "hildon-wizard-dialog.h"
#include "hildon-defines.h"
#include "hildon-wizard-dialog-private.h"
+#include "hildon-stock.h"
#define _(String) dgettext("hildon-libs", String)
@@ -274,9 +275,9 @@ hildon_wizard_dialog_init (HildonWizardDialog *wizard_dial
priv->forward_data_destroy = NULL;
/* Add response buttons: finish, previous, next */
- gtk_dialog_add_button (dialog, _("wdgt_bd_finish"), HILDON_WIZARD_DIALOG_FINISH);
- gtk_dialog_add_button (dialog, _("wdgt_bd_previous"), HILDON_WIZARD_DIALOG_PREVIOUS);
- gtk_dialog_add_button (dialog, _("wdgt_bd_next"), HILDON_WIZARD_DIALOG_NEXT);
+ gtk_dialog_add_button (dialog, HILDON_STOCK_FINISH, HILDON_WIZARD_DIALOG_FINISH);
+ gtk_dialog_add_button (dialog, HILDON_STOCK_PREVIOUS, HILDON_WIZARD_DIALOG_PREVIOUS);
+ gtk_dialog_add_button (dialog, HILDON_STOCK_NEXT, HILDON_WIZARD_DIALOG_NEXT);
/* Set initial button states: previous and finish buttons are disabled */
make_buttons_sensitive (wizard_dialog, FALSE, FALSE, TRUE);