GH #1050 XML: fix gcc -Wshadow warnings

This commit is contained in:
Miklos Vajna
2015-12-14 10:31:10 +01:00
parent cfdf3e4134
commit 063011ba75
23 changed files with 193 additions and 193 deletions

View File

@@ -43,9 +43,9 @@ const std::string DOMException::MESSAGES[_NUMBER_OF_MESSAGES] =
};
DOMException::DOMException(unsigned short code):
XMLException(message(code)),
_code(code)
DOMException::DOMException(unsigned short exceptionCode):
XMLException(message(exceptionCode)),
_code(exceptionCode)
{
}