summaryrefslogtreecommitdiff
path: root/content/content_type.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@netsurf-browser.org>2012-06-20 09:05:24 +0000
committerVincent Sanders <vince@netsurf-browser.org>2012-06-20 09:05:24 +0000
commit07bea8814932ca9de313008ebcf6d44cac12460e (patch)
treed1ad35c3d7cc719f1956694249d56a1b3bfa149c /content/content_type.h
parent40a2f8622cceec6b0a34027ba299381f7d24a49d (diff)
downloadnetsurf-07bea8814932ca9de313008ebcf6d44cac12460e.tar.gz
netsurf-07bea8814932ca9de313008ebcf6d44cac12460e.tar.bz2
fix theme comment
fix CONTENT_ANY mask missing the script entry svn path=/trunk/netsurf/; revision=13978
Diffstat (limited to 'content/content_type.h')
-rw-r--r--content/content_type.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/content/content_type.h b/content/content_type.h
index c0b3a2b23..6488692fe 100644
--- a/content/content_type.h
+++ b/content/content_type.h
@@ -42,7 +42,7 @@ typedef enum {
/** Navigator API Plugins */
CONTENT_PLUGIN = 0x10,
- /** Themes (only GTK) */
+ /** Themes (only GTK and RISC OS) */
CONTENT_THEME = 0x20,
/** Javascript */
@@ -51,7 +51,7 @@ typedef enum {
CONTENT_SCRIPT = 0x40,
/** Any content matches */
- CONTENT_ANY = 0x3f
+ CONTENT_ANY = 0x7f
} content_type;