Commit 890ea92a authored by Erwan Tulou's avatar Erwan Tulou

skins2: fix compil warning

function call didn't match function prototype.
parent 8b02394e
......@@ -78,7 +78,7 @@ void SkinParser::handleBeginElement( const string &rName, AttrList_t &attr )
msg_Dbg( getIntf(), "opening included XML file: %s", fullPath.c_str() );
// FIXME: We do not use the DTD to validate the included XML file,
// as the parser seems to dislike it otherwise...
SkinParser subParser( getIntf(), fullPath.c_str(), false, m_pData );
SkinParser subParser( getIntf(), fullPath.c_str(), m_path, false, m_pData );
subParser.parse();
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment