diff options
author | Vicent Marti | 2008-08-05 09:54:36 +0000 |
---|---|---|
committer | Vicent Marti | 2008-08-05 09:54:36 +0000 |
commit | 70ef50343499ee6736389a0cad006ea6eeeca5bd (patch) | |
tree | e0028232162506214317b6cdce0be43fc0ff531e /common | |
parent | dd46f8305e5c430b3af5511e81f621262149380d (diff) | |
download | scummvm-rg350-70ef50343499ee6736389a0cad006ea6eeeca5bd.tar.gz scummvm-rg350-70ef50343499ee6736389a0cad006ea6eeeca5bd.tar.bz2 scummvm-rg350-70ef50343499ee6736389a0cad006ea6eeeca5bd.zip |
Massive refactoring on the layout parsing API.
Added support for layout spacings.
Fixed bug in theme conversion python script.
svn-id: r33630
Diffstat (limited to 'common')
-rw-r--r-- | common/xmlparser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/xmlparser.h b/common/xmlparser.h index 0510ec0ab6..2f73b5905d 100644 --- a/common/xmlparser.h +++ b/common/xmlparser.h @@ -504,7 +504,7 @@ protected: while (isValidNameChar(_text[_pos])) _token += _text[_pos++]; - return isspace(_text[_pos]) != 0 || _text[_pos] == '>' || _text[_pos] == '='; + return isspace(_text[_pos]) != 0 || _text[_pos] == '>' || _text[_pos] == '=' || _text[_pos] == '/'; } /** |