fix theme comment

fix CONTENT_ANY mask missing the script entry

svn path=/trunk/netsurf/; revision=13978
This commit is contained in:
Vincent Sanders 2012-06-20 09:05:24 +00:00
parent 40a2f8622c
commit 07bea88149
1 changed files with 2 additions and 2 deletions

View File

@ -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;