summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Lebl <jirka@5z.com>1999-11-16 01:18:53 +0000
committerGeorge Lebl <jirka@src.gnome.org>1999-11-16 01:18:53 +0000
commit705168dab0ecc0293ba3e7602107a153fad963f3 (patch)
tree3d77a5c355f66a02f1ca92121c5214bac890baec
parent3a202479a824405e23225abb240c53b20cc7b00f (diff)
downloadgtk+-705168dab0ecc0293ba3e7602107a153fad963f3.tar.gz
use includes from the current directory rather then from the system
Mon Nov 15 17:18:28 1999 George Lebl <jirka@5z.com> * src/testpixbuf-drawable.c: use includes from the current directory rather then from the system include directory as gdk-pixbuf includes are not yet installed when this is compiled.
-rw-r--r--demos/testpixbuf-drawable.c4
-rw-r--r--gdk-pixbuf/ChangeLog6
2 files changed, 8 insertions, 2 deletions
diff --git a/demos/testpixbuf-drawable.c b/demos/testpixbuf-drawable.c
index d7a941e4ea..0521ad91ec 100644
--- a/demos/testpixbuf-drawable.c
+++ b/demos/testpixbuf-drawable.c
@@ -1,7 +1,7 @@
#include <gtk/gtk.h>
#include <gdk/gdkx.h>
-#include <gdk-pixbuf/gdk-pixbuf.h>
-#include <gdk-pixbuf/gdk-pixbuf-drawable.h>
+#include "gdk-pixbuf.h"
+#include "gdk-pixbuf-drawable.h"
void close_app(GtkWidget *widget, gpointer data)
{
diff --git a/gdk-pixbuf/ChangeLog b/gdk-pixbuf/ChangeLog
index 162ecd5af8..2c74443620 100644
--- a/gdk-pixbuf/ChangeLog
+++ b/gdk-pixbuf/ChangeLog
@@ -1,3 +1,9 @@
+Mon Nov 15 17:18:28 1999 George Lebl <jirka@5z.com>
+
+ * src/testpixbuf-drawable.c: use includes from the current directory
+ rather then from the system include directory as gdk-pixbuf
+ includes are not yet installed when this is compiled.
+
1999-11-13 Cody Russell <bratsche@dfw.net>
* src/testpixbuf-drawable.c: Added a test program for drawable
code.