summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2012-07-22 18:01:10 +0100
committerMichael Drake <tlsa@netsurf-browser.org>2012-07-22 18:01:10 +0100
commit9de20d9a1a9281ddf3b1d42f99f8e85c5c990af0 (patch)
tree5fa16fb2f181a1310df840b28922d6f91bbc944c /utils
parent5d8959b30cad998e666af15af1aa9eb58827e644 (diff)
downloadnetsurf-9de20d9a1a9281ddf3b1d42f99f8e85c5c990af0.tar.gz
netsurf-9de20d9a1a9281ddf3b1d42f99f8e85c5c990af0.tar.bz2
Interned string cleanup, phase 3: Move html_forms.c to corestring.
Diffstat (limited to 'utils')
-rw-r--r--utils/corestrings.c3
-rw-r--r--utils/corestrings.h1
2 files changed, 4 insertions, 0 deletions
diff --git a/utils/corestrings.c b/utils/corestrings.c
index d266d17c6..9cfe1eaf2 100644
--- a/utils/corestrings.c
+++ b/utils/corestrings.c
@@ -33,6 +33,7 @@ lwc_string *corestring_lwc_applet;
lwc_string *corestring_lwc_baseline;
lwc_string *corestring_lwc_body;
lwc_string *corestring_lwc_bottom;
+lwc_string *corestring_lwc_button;
lwc_string *corestring_lwc_caption;
lwc_string *corestring_lwc_center;
lwc_string *corestring_lwc_col;
@@ -113,6 +114,7 @@ void corestrings_fini(void)
CSS_LWC_STRING_UNREF(baseline);
CSS_LWC_STRING_UNREF(body);
CSS_LWC_STRING_UNREF(bottom);
+ CSS_LWC_STRING_UNREF(button);
CSS_LWC_STRING_UNREF(caption);
CSS_LWC_STRING_UNREF(center);
CSS_LWC_STRING_UNREF(col);
@@ -212,6 +214,7 @@ nserror corestrings_init(void)
CSS_LWC_STRING_INTERN(baseline);
CSS_LWC_STRING_INTERN(body);
CSS_LWC_STRING_INTERN(bottom);
+ CSS_LWC_STRING_INTERN(button);
CSS_LWC_STRING_INTERN(caption);
CSS_LWC_STRING_INTERN(center);
CSS_LWC_STRING_INTERN(col);
diff --git a/utils/corestrings.h b/utils/corestrings.h
index 236c108bf..52acf1da1 100644
--- a/utils/corestrings.h
+++ b/utils/corestrings.h
@@ -38,6 +38,7 @@ extern lwc_string *corestring_lwc_applet;
extern lwc_string *corestring_lwc_baseline;
extern lwc_string *corestring_lwc_body;
extern lwc_string *corestring_lwc_bottom;
+extern lwc_string *corestring_lwc_button;
extern lwc_string *corestring_lwc_caption;
extern lwc_string *corestring_lwc_center;
extern lwc_string *corestring_lwc_col;