Quell compiler warnings

This commit is contained in:
Matthias Clasen
2011-02-11 23:59:42 -05:00
parent 086f266767
commit bfd66fe3a3

View File

@ -31,10 +31,7 @@ int
main (int argc, char *argv[])
{
GtkWidget *window;
GtkWidget *button;
/* FIXME: This is not allowable - what is this supposed to be? */
/* gdk_progclass = g_strdup ("XTerm"); */
gtk_init (&argc, &argv);
window = g_object_connect (g_object_new (gtk_window_get_type (),
@ -45,7 +42,7 @@ main (int argc, char *argv[])
NULL),
"signal::destroy", gtk_main_quit, NULL,
NULL);
button = g_object_connect (g_object_new (gtk_button_get_type (),
g_object_connect (g_object_new (gtk_button_get_type (),
"GtkButton::label", "hello world",
"GtkWidget::parent", window,
"GtkWidget::visible", TRUE,