diff options
Diffstat (limited to 'libtemplate/xmlparser.c')
-rw-r--r-- | libtemplate/xmlparser.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libtemplate/xmlparser.c b/libtemplate/xmlparser.c index e086ba4..aa7d498 100644 --- a/libtemplate/xmlparser.c +++ b/libtemplate/xmlparser.c @@ -200,6 +200,8 @@ bool cXmlParser::ParseView(void) { vector<pair<string, string> > attribs; ParseAttributes(attr, node, attribs); ParseGrid(node->xmlChildrenNode, attribs); + } else if (!xmlStrcmp(node->name, (const xmlChar *) "tab")) { + ParseViewTab(node, view); } else { return false; } |