summaryrefslogtreecommitdiff
path: root/shell/source/all
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-09-09 13:26:44 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-09-09 12:42:25 +0000
commit20c14c812ccc00692d42d294d3b8dea1774e3511 (patch)
treed48011cd869cf64069c84d1494f504f6f59b8ed1 /shell/source/all
parent9dc0f2b703d8fbc8698a3cf36949a981e55b68c6 (diff)
loplugin:constantparam in sfx2
Change-Id: If5d401001abb7bf3fc642d47f537b57836e6d9c5 Reviewed-on: https://gerrit.libreoffice.org/28772 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'shell/source/all')
-rw-r--r--shell/source/all/xml_parser.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/source/all/xml_parser.cxx b/shell/source/all/xml_parser.cxx
index 3c4dd0bb893b..6f466477aaed 100644
--- a/shell/source/all/xml_parser.cxx
+++ b/shell/source/all/xml_parser.cxx
@@ -69,9 +69,9 @@ namespace /* private */
}
}
-xml_parser::xml_parser(const XML_Char* EncodingName) :
+xml_parser::xml_parser() :
document_handler_(nullptr),
- xml_parser_(XML_ParserCreate(EncodingName))
+ xml_parser_(XML_ParserCreate(nullptr))
{
init();
}