summaryrefslogtreecommitdiff
path: root/content
diff options
context:
space:
mode:
authorRichard Wilson <rjw@netsurf-browser.org>2004-10-04 23:54:42 +0000
committerRichard Wilson <rjw@netsurf-browser.org>2004-10-04 23:54:42 +0000
commit403f12872d55a71b04287ed828be0c63be19e856 (patch)
tree190dbf327b98bb49831dc609f6c13bd828ded377 /content
parent7144ce65ebbc7b1cb77d1f6b678a6d2b3c6547d1 (diff)
downloadnetsurf-403f12872d55a71b04287ed828be0c63be19e856.tar.gz
netsurf-403f12872d55a71b04287ed828be0c63be19e856.tar.bz2
[project @ 2004-10-04 23:54:42 by rjw]
Moved GIF file reading to image/, optimisation of plotting for GIFs, JNGs, PNGs and JPEGs, initial work for toolbar customisation. Possibly some other things too. svn path=/import/netsurf/; revision=1301
Diffstat (limited to 'content')
-rw-r--r--content/content.c2
-rw-r--r--content/content.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/content/content.c b/content/content.c
index cf15364e7..2999e2676 100644
--- a/content/content.c
+++ b/content/content.c
@@ -33,7 +33,7 @@
#include "netsurf/image/mng.h"
#endif
#ifdef WITH_GIF
-#include "netsurf/riscos/gif.h"
+#include "netsurf/image/gif.h"
#endif
#ifdef WITH_SPRITE
#include "netsurf/riscos/sprite.h"
diff --git a/content/content.h b/content/content.h
index 19d60fe6e..cb5d411e6 100644
--- a/content/content.h
+++ b/content/content.h
@@ -105,7 +105,7 @@
#include "netsurf/image/jpeg.h"
#endif
#ifdef WITH_GIF
-#include "netsurf/riscos/gif.h"
+#include "netsurf/image/gif.h"
#endif
#ifdef WITH_PLUGIN
#include "netsurf/riscos/plugin.h"