summaryrefslogtreecommitdiff
path: root/render
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2017-01-19 21:15:08 +0000
committerVincent Sanders <vince@kyllikki.org>2017-01-19 21:15:08 +0000
commit70d700b26c13e04b601c4ac3db09514db473d01c (patch)
tree27daebf66a8b037fdd36619efe02785c839f9a9f /render
parenta99c7a5c44fdd3f6ee1a0ec2b9beb5a1d6a32501 (diff)
downloadnetsurf-70d700b26c13e04b601c4ac3db09514db473d01c.tar.gz
netsurf-70d700b26c13e04b601c4ac3db09514db473d01c.tar.bz2
rationalise use of utils/utils.h header
Diffstat (limited to 'render')
-rw-r--r--render/box.c6
-rw-r--r--render/box_construct.c1
-rw-r--r--render/form.c4
-rw-r--r--render/html.c1
-rw-r--r--render/html_css_fetcher.c1
-rw-r--r--render/imagemap.c6
-rw-r--r--render/search.c3
7 files changed, 11 insertions, 11 deletions
diff --git a/render/box.c b/render/box.c
index f83bbb2c6..11a24e797 100644
--- a/render/box.c
+++ b/render/box.c
@@ -19,8 +19,9 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-/** \file
- * Box tree manipulation (implementation).
+/**
+ * \file
+ * implementation of box tree manipulation.
*/
#include <assert.h>
@@ -32,7 +33,6 @@
#include "utils/nsoption.h"
#include "utils/log.h"
#include "utils/talloc.h"
-#include "utils/utils.h"
#include "netsurf/misc.h"
#include "netsurf/content.h"
#include "netsurf/mouse.h"
diff --git a/render/box_construct.c b/render/box_construct.c
index d7de68c18..f2d041385 100644
--- a/render/box_construct.c
+++ b/render/box_construct.c
@@ -38,7 +38,6 @@
#include "utils/log.h"
#include "utils/messages.h"
#include "utils/talloc.h"
-#include "utils/utils.h"
#include "utils/string.h"
#include "utils/ascii.h"
#include "netsurf/css.h"
diff --git a/render/form.c b/render/form.c
index 093b11fbc..6eb1b80b8 100644
--- a/render/form.c
+++ b/render/form.c
@@ -21,7 +21,8 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-/** \file
+/**
+ * \file
* Form handling functions (implementation).
*/
@@ -38,7 +39,6 @@
#include "utils/talloc.h"
#include "utils/url.h"
#include "utils/utf8.h"
-#include "utils/utils.h"
#include "utils/ascii.h"
#include "netsurf/browser_window.h"
#include "netsurf/mouse.h"
diff --git a/render/html.c b/render/html.c
index 3ddcdc3e1..6f7ad6249 100644
--- a/render/html.c
+++ b/render/html.c
@@ -29,6 +29,7 @@
#include <stdlib.h>
#include <nsutils/time.h>
+#include "utils/utils.h"
#include "utils/config.h"
#include "utils/corestrings.h"
#include "utils/http.h"
diff --git a/render/html_css_fetcher.c b/render/html_css_fetcher.c
index 05aef0227..b9d79a792 100644
--- a/render/html_css_fetcher.c
+++ b/render/html_css_fetcher.c
@@ -23,7 +23,6 @@
#include <string.h>
#include <dom/dom.h>
-
#include <libwapcaplet/libwapcaplet.h>
#include "utils/config.h"
diff --git a/render/imagemap.c b/render/imagemap.c
index 10b48f14b..6e2504bdc 100644
--- a/render/imagemap.c
+++ b/render/imagemap.c
@@ -27,14 +27,14 @@
#include <dom/dom.h>
+#include "utils/log.h"
+#include "utils/corestrings.h"
#include "content/content_protected.h"
#include "content/hlcache.h"
+
#include "render/box.h"
#include "render/html_internal.h"
#include "render/imagemap.h"
-#include "utils/corestrings.h"
-#include "utils/log.h"
-#include "utils/utils.h"
#define HASH_SIZE 31 /* fixed size hash table */
diff --git a/render/search.c b/render/search.c
index 523f8fb98..4af6706a0 100644
--- a/render/search.c
+++ b/render/search.c
@@ -18,7 +18,8 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
- /** \file
+/**
+ * \file
* Free text search (core)
*/