aboutsummaryrefslogtreecommitdiff
path: root/common/xmlparser.h
diff options
context:
space:
mode:
authorVicent Marti2008-08-02 15:15:32 +0000
committerVicent Marti2008-08-02 15:15:32 +0000
commit7cb23c76a267955790fa58380d65fe55b4a5dcd1 (patch)
treea3b361607237c8a4424191bdd142d135bedd34fd /common/xmlparser.h
parent01b7d26956fddc58a4471516efc44596a19ccc50 (diff)
downloadscummvm-rg350-7cb23c76a267955790fa58380d65fe55b4a5dcd1.tar.gz
scummvm-rg350-7cb23c76a267955790fa58380d65fe55b4a5dcd1.tar.bz2
scummvm-rg350-7cb23c76a267955790fa58380d65fe55b4a5dcd1.zip
Improved looks on the Modern theme in the new GUI.
Added support for including externally the default theme in the code. Added Modern theme as a separate XML file in the themes/ dir. Added "makedeftheme.py" script to convert XML themes into include files. svn-id: r33528
Diffstat (limited to 'common/xmlparser.h')
-rw-r--r--common/xmlparser.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/common/xmlparser.h b/common/xmlparser.h
index 9308524388..031ee2be14 100644
--- a/common/xmlparser.h
+++ b/common/xmlparser.h
@@ -471,13 +471,6 @@ protected:
return true;
}
- if (_text[_pos] == '/' && _text[_pos + 1] == '/') {
- _pos += 2;
- while (_text[_pos] && _text[_pos] != '\n' && _text[_pos] != '\r')
- _pos++;
- return true;
- }
-
return false;
}