summaryrefslogtreecommitdiff
path: root/riscos/options.h
diff options
context:
space:
mode:
authorRichard Wilson <rjw@netsurf-browser.org>2007-10-10 21:22:36 +0000
committerRichard Wilson <rjw@netsurf-browser.org>2007-10-10 21:22:36 +0000
commit08ea9e706bef92eb60efaf38937e8864466cf3fa (patch)
tree429d305e3fc11c8e670a29079eea5cf6d37d3a4b /riscos/options.h
parentcab5913aeee8a96ef32a331c1843e06349c23405 (diff)
downloadnetsurf-08ea9e706bef92eb60efaf38937e8864466cf3fa.tar.gz
netsurf-08ea9e706bef92eb60efaf38937e8864466cf3fa.tar.bz2
Allow interactive help to be turned off (implement 1793020)
svn path=/trunk/netsurf/; revision=3631
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 510147032..8510e5803 100644
--- a/riscos/options.h
+++ b/riscos/options.h
@@ -62,6 +62,7 @@ extern char *option_recent_save;
extern char *option_theme_path;
extern char *option_theme_save;
extern bool option_thumbnail_iconise;
+extern bool option_interactive_help;
#define EXTRA_OPTION_DEFINE \
bool option_use_mouse_gestures = false;\
@@ -98,7 +99,8 @@ char *option_recent_path = 0; \
char *option_recent_save = 0; \
char *option_theme_path = 0; \
char *option_theme_save = 0; \
-bool option_thumbnail_iconise = true;
+bool option_thumbnail_iconise = true; \
+bool option_interactive_help = true;
#define EXTRA_OPTION_TABLE \
{ "use_mouse_gestures", OPTION_BOOL, &option_use_mouse_gestures },\
@@ -135,6 +137,7 @@ bool option_thumbnail_iconise = true;
{ "recent_save", OPTION_STRING, &option_recent_save }, \
{ "theme_path", OPTION_STRING, &option_theme_path }, \
{ "theme_save", OPTION_STRING, &option_theme_save }, \
-{ "thumbnail_iconise", OPTION_BOOL, &option_thumbnail_iconise }
+{ "thumbnail_iconise", OPTION_BOOL, &option_thumbnail_iconise }, \
+{ "interactive_help", OPTION_BOOL, &option_interactive_help }
#endif