summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2015-02-26 16:58:41 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2015-02-26 16:58:41 +0000
commitac636100e8d87a9e0080a258d90f1622bd1e5b8b (patch)
tree876afb1c4b10d75fc68b7b2e05317bb50fc80ced /utils
parent4402bcf779973bbefc264e125010ab51d08de9b4 (diff)
downloadnetsurf-ac636100e8d87a9e0080a258d90f1622bd1e5b8b.tar.gz
netsurf-ac636100e8d87a9e0080a258d90f1622bd1e5b8b.tar.bz2
Remove include of nsurl from corestrings.h
Diffstat (limited to 'utils')
-rw-r--r--utils/corestrings.c1
-rw-r--r--utils/corestrings.h3
2 files changed, 2 insertions, 2 deletions
diff --git a/utils/corestrings.c b/utils/corestrings.c
index 0f9c4d6ac..6e52a1b81 100644
--- a/utils/corestrings.c
+++ b/utils/corestrings.c
@@ -23,6 +23,7 @@
#include <dom/dom.h>
#include "utils/corestrings.h"
+#include "utils/nsurl.h"
#include "utils/utils.h"
/* lwc_string strings */
diff --git a/utils/corestrings.h b/utils/corestrings.h
index b55852900..d51e11cbb 100644
--- a/utils/corestrings.h
+++ b/utils/corestrings.h
@@ -24,7 +24,6 @@
#define NETSURF_UTILS_CORESTRINGS_H_
#include <libwapcaplet/libwapcaplet.h>
-#include "utils/nsurl.h"
#include "utils/errors.h"
/** File url prefix. */
@@ -289,6 +288,6 @@ extern struct dom_string *corestring_dom___ns_key_file_name_node_data;
extern struct dom_string *corestring_dom___ns_key_image_coords_node_data;
/* URLs */
-extern nsurl *corestring_nsurl_about_blank;
+extern struct nsurl *corestring_nsurl_about_blank;
#endif