diff options
author | Matthias Clasen <mclasen@redhat.com> | 2011-02-11 23:59:42 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2011-02-12 08:01:51 -0500 |
commit | bfd66fe3a38353508a4b084610b6e06608619162 (patch) | |
tree | eee349917a7b66f907408250c854fb67f1889d47 /tests/simple.c | |
parent | 086f266767ad06ebca7cf1487de8e29d4eddf61a (diff) | |
download | gtk+-bfd66fe3a38353508a4b084610b6e06608619162.tar.gz |
Quell compiler warnings
Diffstat (limited to 'tests/simple.c')
-rw-r--r-- | tests/simple.c | 33 |
1 files changed, 15 insertions, 18 deletions
diff --git a/tests/simple.c b/tests/simple.c index 6c2b5e9846..da08064d48 100644 --- a/tests/simple.c +++ b/tests/simple.c @@ -31,27 +31,24 @@ 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 (), - "type", GTK_WINDOW_TOPLEVEL, - "title", "hello world", - "resizable", FALSE, - "border_width", 10, - NULL), - "signal::destroy", gtk_main_quit, NULL, - NULL); - button = g_object_connect (g_object_new (gtk_button_get_type (), - "GtkButton::label", "hello world", - "GtkWidget::parent", window, - "GtkWidget::visible", TRUE, - NULL), - "signal::clicked", hello, NULL, - NULL); + "type", GTK_WINDOW_TOPLEVEL, + "title", "hello world", + "resizable", FALSE, + "border_width", 10, + NULL), + "signal::destroy", gtk_main_quit, NULL, + NULL); + g_object_connect (g_object_new (gtk_button_get_type (), + "GtkButton::label", "hello world", + "GtkWidget::parent", window, + "GtkWidget::visible", TRUE, + NULL), + "signal::clicked", hello, NULL, + NULL); gtk_widget_show (window); gtk_main (); |