diff options
author | Tor Lillqvist <tml@iki.fi> | 2001-03-19 19:37:59 +0000 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2001-03-19 19:37:59 +0000 |
commit | c5f68d2527735465da0f11013871b5b719aae405 (patch) | |
tree | 0e706ba2624ec0358e41d789602556685448abbe /demos | |
parent | 4f81f119e4baaf9b827ab6dc3d0a110a88258365 (diff) | |
download | gtk+-c5f68d2527735465da0f11013871b5b719aae405.tar.gz |
gdk/win32/gdkdrawable-win32.c Use correct casts in debugging output.
2001-03-19 Tor Lillqvist <tml@iki.fi>
* gdk/win32/gdkdrawable-win32.c
* gdk/win32/gdkimage-win32.c: Use correct casts in debugging
output.
* demos/testpixbuf-drawable.c: If GDK_WINDOWING_WIN32, include
gdkwin32.h.
2001-03-19 Tor Lillqvist <tml@iki.fi>
* makefile.mingw.in: Handle gdk-pixbuf-marshal.c.
* gdk_pixbuf.def: Update.
* pixbufloader_*.def: Just export the fill_vtable functions now.
Diffstat (limited to 'demos')
-rw-r--r-- | demos/testpixbuf-drawable.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/demos/testpixbuf-drawable.c b/demos/testpixbuf-drawable.c index aee537459b..28b5b7d1b4 100644 --- a/demos/testpixbuf-drawable.c +++ b/demos/testpixbuf-drawable.c @@ -1,6 +1,10 @@ #include <config.h> #include <gtk/gtk.h> +#ifdef GDK_WINDOWING_X11 #include <gdk/x11/gdkx.h> +#elif defined (GDK_WINDOWING_WIN32) +#include <gdk/win32/gdkwin32.h> +#endif int close_app(GtkWidget *widget, gpointer data) { |