summaryrefslogtreecommitdiff
path: root/src/text.c
diff options
context:
space:
mode:
authorGlynn Foster <glynn.foster@sun.com>2003-01-18 13:35:13 +0000
committerGlynn Foster <gman@src.gnome.org>2003-01-18 13:35:13 +0000
commitf182d9f7fce8e9a57c03eb71f4467894394d0104 (patch)
treed937f36d601cf7aa611818f954268a3fdd8700ee /src/text.c
parentFix a segfault in the --list if no data is supplied to populate (diff)
downloadzenity-f182d9f7fce8e9a57c03eb71f4467894394d0104.tar.gz
zenity-f182d9f7fce8e9a57c03eb71f4467894394d0104.tar.bz2
zenity-f182d9f7fce8e9a57c03eb71f4467894394d0104.zip
Some new window icons.
2003-01-18 Glynn Foster <glynn.foster@sun.com> * data/Makefile.am, data/zenity-calendar.png, data/zenity-entry.png, data/zenity-progress.png, data/zenity-text.png: Some new window icons. * src/text.c: Fix crash where the GladeXML ref was getting unref'd before we wanted to use it. * src/main.c: Fix up commandline parsing a little, although we should really add the parsing options for gtk+. * src/zenity.glade: Give some saner defaults. * THANKS, src/about.c: Update for all the people I stole icons and code from. * TODO: Update accordingly.
Diffstat (limited to 'src/text.c')
-rw-r--r--src/text.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/text.c b/src/text.c
index ead35ec2..fe9747cb 100644
--- a/src/text.c
+++ b/src/text.c
@@ -46,9 +46,6 @@ zenity_text (ZenityData *data, ZenityTextData *text_data)
dialog = glade_xml_get_widget (glade_dialog, "zenity_text_dialog");
- if (glade_dialog)
- g_object_unref (glade_dialog);
-
g_signal_connect (G_OBJECT (dialog), "response",
G_CALLBACK (zenity_text_dialog_response), data);
@@ -58,7 +55,7 @@ zenity_text (ZenityData *data, ZenityTextData *text_data)
if (data->window_icon)
zenity_util_set_window_icon (dialog, data->window_icon);
else
- ;
+ zenity_util_set_window_icon (dialog, ZENITY_IMAGE_FULLPATH ("zenity-text.png"));
gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_CLOSE);
@@ -68,6 +65,10 @@ zenity_text (ZenityData *data, ZenityTextData *text_data)
gtk_text_view_set_buffer (GTK_TEXT_VIEW (text_view), text_buffer);
gtk_widget_show (dialog);
+
+ if (glade_dialog)
+ g_object_unref (glade_dialog);
+
gtk_main ();
}
bgstack15