summaryrefslogtreecommitdiff
path: root/examples/pixmap
diff options
context:
space:
mode:
authorMatthias Clasen <matthiasc@src.gnome.org>2002-02-25 01:47:44 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2002-02-25 01:47:44 +0000
commit9f1363013fe5e3def58a007b6c109be93d4e5702 (patch)
treebfd35007c9638a34d6904db1ffd30b38ebc949ec /examples/pixmap
parent4d06c9d09f5e8befceb297aa426f293f58248888 (diff)
downloadgdk-pixbuf-9f1363013fe5e3def58a007b6c109be93d4e5702.tar.gz
More GTK+ 2.0 updates.
* docs/tutorial/gtk-tut.sgml, docs/tutorial/images/*, examples/*: More GTK+ 2.0 updates. * docs/tutorial/Makefile.am: build and dist the new tutorial, not the old Linuxdoc one.
Diffstat (limited to 'examples/pixmap')
-rw-r--r--examples/pixmap/pixmap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/pixmap/pixmap.c b/examples/pixmap/pixmap.c
index 09a0a4539..7707a64ce 100644
--- a/examples/pixmap/pixmap.c
+++ b/examples/pixmap/pixmap.c
@@ -57,8 +57,8 @@ int main( int argc,
the application */
gtk_init (&argc, &argv);
window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
- gtk_signal_connect (G_OBJECT (window), "delete_event",
- G_CALLBACK (close_application), NULL);
+ g_signal_connect (G_OBJECT (window), "delete_event",
+ G_CALLBACK (close_application), NULL);
gtk_container_set_border_width (GTK_CONTAINER (window), 10);
gtk_widget_show (window);