summaryrefslogtreecommitdiff
path: root/src/entry.c
diff options
context:
space:
mode:
authorArx Cruz <acruz@redhat.com>2015-04-21 13:51:23 +0200
committerArx Cruz <acruz@redhat.com>2015-04-21 13:51:23 +0200
commita0fa643f1c980e8a70938d977600f935b9c215f6 (patch)
treefc05bba2f68a6f6bb0accbf25405e6ee4f55d216 /src/entry.c
parentba5ea0386de2a80a664fb28d3af7e8d395968314 (diff)
parentc45daa96bfdc5a958cc0f2cdaf4db71ac61b8fde (diff)
downloadzenity-a0fa643f1c980e8a70938d977600f935b9c215f6.tar.gz
Merge branch 'jjardon/no_deprecated'
Conflicts: src/msg.c
Diffstat (limited to 'src/entry.c')
-rw-r--r--src/entry.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/entry.c b/src/entry.c
index 5066f71..8036726 100644
--- a/src/entry.c
+++ b/src/entry.c
@@ -95,15 +95,11 @@ zenity_entry (ZenityData *data, ZenityEntryData *entry_data)
if (data->ok_label) {
button = GTK_WIDGET (gtk_builder_get_object (builder, "zenity_entry_ok_button"));
gtk_button_set_label (GTK_BUTTON (button), data->ok_label);
- gtk_button_set_image (GTK_BUTTON (button),
- gtk_image_new_from_stock (GTK_STOCK_OK, GTK_ICON_SIZE_BUTTON));
}
if (data->cancel_label) {
button = GTK_WIDGET (gtk_builder_get_object (builder, "zenity_entry_cancel_button"));
gtk_button_set_label (GTK_BUTTON (button), data->cancel_label);
- gtk_button_set_image (GTK_BUTTON (button),
- gtk_image_new_from_stock (GTK_STOCK_CANCEL, GTK_ICON_SIZE_BUTTON));
}
text = gtk_builder_get_object (builder, "zenity_entry_text");