summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@netsurf-browser.org>2012-03-24 20:55:22 +0000
committerDaniel Silverstone <dsilvers@netsurf-browser.org>2012-03-24 20:55:22 +0000
commit24894214bcfef951b554a218b55b519c95963a22 (patch)
tree51c0db81cd76e6ed7896d78410a3846834adcb4a /desktop
parent883907d6122fc5b1726ab4d224faa9e32986dbcf (diff)
downloadnetsurf-24894214bcfef951b554a218b55b519c95963a22.tar.gz
netsurf-24894214bcfef951b554a218b55b519c95963a22.tar.bz2
Include dom/dom.h where it might be needed
svn path=/trunk/netsurf/; revision=13625
Diffstat (limited to 'desktop')
-rw-r--r--desktop/print.c2
-rw-r--r--desktop/save_complete.c3
-rw-r--r--desktop/save_text.c2
-rw-r--r--desktop/search.c1
-rw-r--r--desktop/selection.c1
-rw-r--r--desktop/textinput.c1
6 files changed, 8 insertions, 2 deletions
diff --git a/desktop/print.c b/desktop/print.c
index 4b8092b6f..e1cd48f93 100644
--- a/desktop/print.c
+++ b/desktop/print.c
@@ -25,6 +25,8 @@
#include <assert.h>
#include <string.h>
+#include <dom/dom.h>
+
#include "content/content.h"
#include "content/hlcache.h"
#include "css/utils.h"
diff --git a/desktop/save_complete.c b/desktop/save_complete.c
index 8c3a1f716..4703c8d55 100644
--- a/desktop/save_complete.c
+++ b/desktop/save_complete.c
@@ -30,8 +30,7 @@
#include <string.h>
#include <sys/types.h>
#include <regex.h>
-#include <libxml/HTMLtree.h>
-#include <libxml/parserInternals.h>
+#include <dom/dom.h>
#include "utils/config.h"
#include "content/content.h"
#include "content/hlcache.h"
diff --git a/desktop/save_text.c b/desktop/save_text.c
index d2f687e34..92cf32a9f 100644
--- a/desktop/save_text.c
+++ b/desktop/save_text.c
@@ -25,6 +25,8 @@
#include <stdbool.h>
#include <string.h>
+#include <dom/dom.h>
+
#include "utils/config.h"
#include "content/content.h"
#include "content/hlcache.h"
diff --git a/desktop/search.c b/desktop/search.c
index 36027044b..257c7e8a0 100644
--- a/desktop/search.c
+++ b/desktop/search.c
@@ -25,6 +25,7 @@
#include <ctype.h>
#include <string.h>
+#include <dom/dom.h>
#include "content/content.h"
#include "content/hlcache.h"
#include "desktop/browser.h"
diff --git a/desktop/selection.c b/desktop/selection.c
index 2c61c511e..a3d93efa6 100644
--- a/desktop/selection.c
+++ b/desktop/selection.c
@@ -26,6 +26,7 @@
#include <stdlib.h>
#include <stdbool.h>
#include <string.h>
+#include <dom/dom.h>
#include "desktop/gui.h"
#include "desktop/mouse.h"
diff --git a/desktop/textinput.c b/desktop/textinput.c
index 63e17debe..36011bed9 100644
--- a/desktop/textinput.c
+++ b/desktop/textinput.c
@@ -27,6 +27,7 @@
#include <assert.h>
#include <ctype.h>
#include <string.h>
+#include <dom/dom.h>
#include "desktop/browser.h"
#include "desktop/gui.h"