summaryrefslogtreecommitdiff
path: root/shell/source
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-11-23 11:20:48 +0200
committerNoel Grandin <noel@peralex.com>2015-11-23 13:30:54 +0200
commit018bacf44a49f83eae34e2fb2187ffcb83259a65 (patch)
tree0a055904ec9b585b629eb923b1e11ec9fe59f69a /shell/source
parent1aa29c829121d19548143a0e3b97b061c72afb3a (diff)
loplugin:unusedfields in shell/
Change-Id: I3a3f7144483cebaad6d64588ff0570f29ab24e27
Diffstat (limited to 'shell/source')
-rw-r--r--shell/source/all/xml_parser.cxx6
1 files changed, 1 insertions, 5 deletions
diff --git a/shell/source/all/xml_parser.cxx b/shell/source/all/xml_parser.cxx
index 893cf0870f03..6d557213d639 100644
--- a/shell/source/all/xml_parser.cxx
+++ b/shell/source/all/xml_parser.cxx
@@ -178,11 +178,7 @@ void xml_parser::parse(const char* XmlData, size_t Length, bool IsFinal)
XML_Parse(xml_parser_, XmlData, static_cast<int>(Length), IsFinal))
{
throw xml_parser_exception(
- XML_ErrorString(XML_GetErrorCode(xml_parser_)),
- (int)XML_GetErrorCode(xml_parser_),
- XML_GetCurrentLineNumber(xml_parser_),
- XML_GetCurrentColumnNumber(xml_parser_),
- XML_GetCurrentByteIndex(xml_parser_));
+ XML_ErrorString(XML_GetErrorCode(xml_parser_)));
}
}