diff options
author | BST 2002 Tony Gale <gale@gtk.org> | 2002-08-25 11:28:42 +0000 |
---|---|---|
committer | Tony Gale <gale@src.gnome.org> | 2002-08-25 11:28:42 +0000 |
commit | 992ea8e1d7a4673831b146e803578dda3a36d44c (patch) | |
tree | 869788fa12a1dc9bb945ef3611c94f2b4f3f4a84 /examples/scribble-simple | |
parent | 2f31e7ed12099c8a6c54255867e9fc9dbb88dd89 (diff) | |
download | gtk+-992ea8e1d7a4673831b146e803578dda3a36d44c.tar.gz |
update packaging script for current tutorial
Sun Aug 25 11:58:27 BST 2002 Tony Gale <gale@gtk.org>
* docs/tutorial/package-db-tutorial.sh:
update packaging script for current tutorial
* docs/tutorial/images/*.eps: New Files
EPS versions of the tutorial images
Diffstat (limited to 'examples/scribble-simple')
-rw-r--r-- | examples/scribble-simple/scribble-simple.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/scribble-simple/scribble-simple.c b/examples/scribble-simple/scribble-simple.c index 44c543a1d0..809a3675e6 100644 --- a/examples/scribble-simple/scribble-simple.c +++ b/examples/scribble-simple/scribble-simple.c @@ -18,6 +18,7 @@ * Boston, MA 02111-1307, USA. */ +#include <stdlib.h> #include <gtk/gtk.h> /* Backing pixmap for drawing area */ @@ -169,7 +170,7 @@ int main( int argc, g_signal_connect_swapped (G_OBJECT (button), "clicked", G_CALLBACK (gtk_widget_destroy), - window); + G_OBJECT (window)); gtk_widget_show (button); gtk_widget_show (window); |