summaryrefslogtreecommitdiff
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
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
-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
-rw-r--r--render/box.c1
-rw-r--r--render/form.c1
-rw-r--r--render/html_interaction.c2
-rw-r--r--render/html_redraw.c1
-rw-r--r--render/imagemap.c2
-rw-r--r--render/layout.c1
-rw-r--r--render/search.c3
-rw-r--r--render/table.c3
-rw-r--r--render/textinput.c2
15 files changed, 24 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"
diff --git a/render/box.c b/render/box.c
index d622101a1..ff744785d 100644
--- a/render/box.c
+++ b/render/box.c
@@ -27,6 +27,7 @@
#include <stdbool.h>
#include <stdio.h>
#include <string.h>
+#include <dom/dom.h>
#include "content/content_protected.h"
#include "content/hlcache.h"
#include "css/css.h"
diff --git a/render/form.c b/render/form.c
index 3fc200724..c828d817c 100644
--- a/render/form.c
+++ b/render/form.c
@@ -31,6 +31,7 @@
#include <stdbool.h>
#include <stdio.h>
#include <string.h>
+#include <dom/dom.h>
#include "content/fetch.h"
#include "content/hlcache.h"
#include "css/css.h"
diff --git a/render/html_interaction.c b/render/html_interaction.c
index 0078b3070..190952c22 100644
--- a/render/html_interaction.c
+++ b/render/html_interaction.c
@@ -26,6 +26,8 @@
#include <assert.h>
#include <stdbool.h>
+#include <dom/dom.h>
+
#include "content/content.h"
#include "desktop/browser.h"
#include "desktop/frames.h"
diff --git a/render/html_redraw.c b/render/html_redraw.c
index 5473152e5..eebd5135f 100644
--- a/render/html_redraw.c
+++ b/render/html_redraw.c
@@ -31,6 +31,7 @@
#include <stdlib.h>
#include <string.h>
#include <math.h>
+#include <dom/dom.h>
#include "utils/config.h"
#include "content/content_protected.h"
#include "css/css.h"
diff --git a/render/imagemap.c b/render/imagemap.c
index fd6399790..5154d6161 100644
--- a/render/imagemap.c
+++ b/render/imagemap.c
@@ -25,6 +25,8 @@
#include <string.h>
#include <strings.h>
+#include <dom/dom.h>
+
#include "content/content_protected.h"
#include "content/hlcache.h"
#include "render/box.h"
diff --git a/render/layout.c b/render/layout.c
index b541517eb..0c672f145 100644
--- a/render/layout.c
+++ b/render/layout.c
@@ -40,6 +40,7 @@
#include <stdlib.h>
#include <string.h>
#include <math.h>
+#include <dom/dom.h>
#include "css/css.h"
#include "css/utils.h"
#include "content/content_protected.h"
diff --git a/render/search.c b/render/search.c
index a51b279da..b6f64daef 100644
--- a/render/search.c
+++ b/render/search.c
@@ -25,6 +25,9 @@
#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/render/table.c b/render/table.c
index f9bac2ac8..4cc213dbc 100644
--- a/render/table.c
+++ b/render/table.c
@@ -22,6 +22,9 @@
*/
#include <assert.h>
+
+#include <dom/dom.h>
+
#include "css/css.h"
#include "css/utils.h"
#include "render/box.h"
diff --git a/render/textinput.c b/render/textinput.c
index 1a205f748..0e62d1e5b 100644
--- a/render/textinput.c
+++ b/render/textinput.c
@@ -28,6 +28,8 @@
#include <ctype.h>
#include <string.h>
+#include <dom/dom.h>
+
#include "desktop/browser.h"
#include "desktop/gui.h"
#include "desktop/mouse.h"