From 7d9c9dba3610bb14c0de6acb1bdaf9ec49a66f33 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Thu, 21 Apr 2016 22:36:21 +0100 Subject: Split utils header into string functions and everything else split out the string handling API from the rest of the utils header and fix up all the fallout. --- render/box_construct.c | 13 +++++++------ render/html.c | 1 + 2 files changed, 8 insertions(+), 6 deletions(-) (limited to 'render') diff --git a/render/box_construct.c b/render/box_construct.c index 23d41203f..7e982d7a3 100644 --- a/render/box_construct.c +++ b/render/box_construct.c @@ -22,7 +22,7 @@ /** * \file - * Conversion of XML tree to box tree (implementation). + * Implementation of conversion from DOM tree to box tree. */ #include @@ -34,11 +34,6 @@ #include #include "utils/config.h" -#include "content/content_protected.h" -#include "css/css.h" -#include "css/hints.h" -#include "css/select.h" -#include "css/utils.h" #include "utils/nsoption.h" #include "utils/corestrings.h" #include "utils/locale.h" @@ -46,6 +41,12 @@ #include "utils/messages.h" #include "utils/talloc.h" #include "utils/utils.h" +#include "utils/string.h" +#include "content/content_protected.h" +#include "css/css.h" +#include "css/hints.h" +#include "css/select.h" +#include "css/utils.h" #include "desktop/gui_misc.h" #include "desktop/gui_internal.h" diff --git a/render/html.c b/render/html.c index fb4c05b0d..c95044f29 100644 --- a/render/html.c +++ b/render/html.c @@ -39,6 +39,7 @@ #include "utils/talloc.h" #include "utils/utf8.h" #include "utils/nsoption.h" +#include "utils/string.h" #include "content/content_protected.h" #include "content/fetch.h" #include "content/hlcache.h" -- cgit v1.2.3