summaryrefslogtreecommitdiff
path: root/demos
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@redhat.com>1999-12-02 20:44:43 +0000
committerArturo Espinosa <unammx@src.gnome.org>1999-12-02 20:44:43 +0000
commit25a81424295d5449bb624a122510d9de760deeeb (patch)
treed635e9ada74bdfa02bb62f4cecd9374ed815c6b8 /demos
parent21f0dff4cd4b2ffd5a23989129753c9a484ba92b (diff)
downloadgtk+-25a81424295d5449bb624a122510d9de760deeeb.tar.gz
#include <config.h>, and fix includes.
1999-12-02 Federico Mena Quintero <federico@redhat.com> * src/testpixbuf.c: #include <config.h>, and fix includes. * src/testpixbuf-drawable.c: #include <config.h>, and fix includes. * src/io-xpm.c: Fix includes. * src/io-tiff.c: Fix includes. * src/io-ras.c: Fix includes, and do not include more stuff than needed. * src/io-pnm.c: Fix inlcudes, and do not include more stuff than needed. * src/io-png.c: Fix includes. * src/io-ico.c: Fix includes, and do not include more stuff than needed. * src/io-gif.c: Fix includes, and do not include more stuff than needed. * src/io-bmp.c: Fix includes, and do not include more stuff than needed. * src/gnome-canvas-pixbuf.c: Fix includes. * src/gdk-pixbuf.c: Fix includes. * src/gdk-pixbuf-util.c: Fix includes. * src/gdk-pixbuf-render.c: Fix includes. * src/gdk-pixbuf-io.h: Fix includes. * src/gdk-pixbuf-drawable.c: Fix includes. * src/gdk-pixbuf-drawable.h: Use angle brackets for the gdk-pixbuf include files. * src/gdk-pixbuf-data.c: Fix includes. * src/gdk-pixbuf-loader.c: #include <config.h> * src/gdk-pixbuf-loader.h: Use angle brackets for the gdk-pixbuf include files. * src/Makefile.am: Commented out the gdk-pixbuf-drawable stuff, since it is not finished.
Diffstat (limited to 'demos')
-rw-r--r--demos/testpixbuf-drawable.c5
-rw-r--r--demos/testpixbuf.c8
2 files changed, 7 insertions, 6 deletions
diff --git a/demos/testpixbuf-drawable.c b/demos/testpixbuf-drawable.c
index fa87674f04..58d0ee6829 100644
--- a/demos/testpixbuf-drawable.c
+++ b/demos/testpixbuf-drawable.c
@@ -1,7 +1,8 @@
+#include <config.h>
#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/demos/testpixbuf.c b/demos/testpixbuf.c
index 5d36b7a0b8..a5bc78774b 100644
--- a/demos/testpixbuf.c
+++ b/demos/testpixbuf.c
@@ -18,14 +18,14 @@
* Boston, MA 02111-1307, USA.
*/
+#include <config.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
-
#include <gtk/gtk.h>
-#include "gdk-pixbuf/gdk-pixbuf.h"
-#include "gdk-pixbuf/gdk-pixbuf-io.h"
-#include "gdk-pixbuf/gdk-pixbuf-loader.h"
+#include "gdk-pixbuf.h"
+#include "gdk-pixbuf-io.h"
+#include "gdk-pixbuf-loader.h"
typedef struct {
FILE *imagefile;