summaryrefslogtreecommitdiff
path: root/src/dialogs/storage.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2014-11-25 22:20:59 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2014-11-25 22:20:59 (GMT)
commitb4d1a25a22371fa67c5d73bc8fcca08e045556f3 (patch)
tree9223e3de1e2d05933fe4230bd1b099df72712a1e /src/dialogs/storage.c
parent7a42f3772ab31bb9c756fc5c5c86c531c04b1d70 (diff)
Removed all references to old GTK stock icons and thus removed GCC warnings.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@428 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/dialogs/storage.c')
-rw-r--r--src/dialogs/storage.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/dialogs/storage.c b/src/dialogs/storage.c
index 9962d03..cffc2e2 100644
--- a/src/dialogs/storage.c
+++ b/src/dialogs/storage.c
@@ -283,12 +283,10 @@ GtkWidget *create_storage_dialog(GLoadedBinary *binary, GtkWindow *parent)
gtk_widget_show(action_area);
gtk_button_box_set_layout(GTK_BUTTON_BOX(action_area), GTK_BUTTONBOX_END);
-
- button = qck_create_button_from_stock(NULL, NULL, "gtk-cancel", NULL, NULL);
+ button = qck_create_button(NULL, NULL, _("_Cancel"), NULL, NULL);
gtk_dialog_add_action_widget(GTK_DIALOG(result), button, GTK_RESPONSE_CANCEL);
- button = qck_create_button_from_stock(NULL, NULL, "gtk-ok",
- G_CALLBACK(save_storage_params), result);
+ button = qck_create_button(NULL, NULL, _("_Ok"), G_CALLBACK(save_storage_params), result);
gtk_dialog_add_action_widget(GTK_DIALOG(result), button, GTK_RESPONSE_OK);
/* Chargement des données actuelles */