summaryrefslogtreecommitdiff
path: root/src/util/dom-str.h
diff options
context:
space:
mode:
authorMichael Drake <michael.drake@codethink.co.uk>2018-08-15 13:41:42 +0100
committerMichael Drake <michael.drake@codethink.co.uk>2018-08-15 13:43:01 +0100
commit6a783002e8b17995132fc6334b4e0900c36bf9a0 (patch)
treef94f63f95c6f9997553d31b46ca08743597b584b /src/util/dom-str.h
parentb77ae8ab7d1ce435d8afd3c77613c5a56c477025 (diff)
downloadlibnslayout-6a783002e8b17995132fc6334b4e0900c36bf9a0.tar.gz
libnslayout-6a783002e8b17995132fc6334b4e0900c36bf9a0.tar.bz2
Library: Use `nsl` as library namespace.
Diffstat (limited to 'src/util/dom-str.h')
-rw-r--r--src/util/dom-str.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/util/dom-str.h b/src/util/dom-str.h
index 9ce7bb9..fb2d0ff 100644
--- a/src/util/dom-str.h
+++ b/src/util/dom-str.h
@@ -8,8 +8,8 @@
* Layout object handling
*/
-#ifndef nslayout_util_dom_str_h_
-#define nslayout_util_dom_str_h_
+#ifndef nsl_util_dom_str_h_
+#define nsl_util_dom_str_h_
extern dom_string *nsl_dom_str_node_inserted;
extern dom_string *nsl_dom_str_node_removed;
@@ -20,15 +20,15 @@ extern dom_string *nsl_dom_str_characterdata_modified;
/**
* Create the internal DOM strings
*
- * \return NSLAYOUT_OK on success, appropriate error otherwise.
+ * \return NSL_OK on success, appropriate error otherwise.
*/
-nslayout_error nsl_dom_str_init(void);
+nsl_error nsl_dom_str_init(void);
/**
* Unref the internal DOM strings
*
- * \return NSLAYOUT_OK on success, appropriate error otherwise.
+ * \return NSL_OK on success, appropriate error otherwise.
*/
-nslayout_error nsl_dom_str_fini(void);
+nsl_error nsl_dom_str_fini(void);
#endif