summaryrefslogtreecommitdiff
path: root/riscos/options.h
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2004-02-27 14:09:15 +0000
committerJames Bursa <james@netsurf-browser.org>2004-02-27 14:09:15 +0000
commit37cf5807433b3d71204bd9413d5a46d21a1e322a (patch)
tree54e9695e180416730d85336bc7b4ec834fab6dc9 /riscos/options.h
parentc8589034e9aec63a39ea0ea960f234f4c22eb953 (diff)
downloadnetsurf-37cf5807433b3d71204bd9413d5a46d21a1e322a.tar.gz
netsurf-37cf5807433b3d71204bd9413d5a46d21a1e322a.tar.bz2
[project @ 2004-02-27 14:09:15 by bursa]
Implement option_language. svn path=/import/netsurf/; revision=574
Diffstat (limited to 'riscos/options.h')
-rw-r--r--riscos/options.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/riscos/options.h b/riscos/options.h
index 965216170..a70e58198 100644
--- a/riscos/options.h
+++ b/riscos/options.h
@@ -19,17 +19,20 @@ extern bool option_use_mouse_gestures;
extern bool option_allow_text_selection;
extern bool option_show_toolbar;
extern char *option_theme;
+extern char *option_language;
#define EXTRA_OPTION_DEFINE \
bool option_use_mouse_gestures = false;\
bool option_allow_text_selection = true;\
bool option_show_toolbar = true;\
-char *option_theme = 0;
+char *option_theme = 0;\
+char *option_language = 0;
#define EXTRA_OPTION_TABLE \
{ "use_mouse_gestures", OPTION_BOOL, &option_use_mouse_gestures },\
{ "allow_text_selection", OPTION_BOOL, &option_allow_text_selection },\
{ "show_toolbar", OPTION_BOOL, &option_show_toolbar },\
-{ "theme", OPTION_STRING, &option_theme }
+{ "theme", OPTION_STRING, &option_theme },\
+{ "language", OPTION_STRING, &option_language }
#endif