summaryrefslogtreecommitdiff
path: root/shell/source/all
diff options
context:
space:
mode:
authorPhilipp Lohmann <Philipp.Lohmann@Sun.COM>2009-10-28 13:31:14 +0100
committerPhilipp Lohmann <Philipp.Lohmann@Sun.COM>2009-10-28 13:31:14 +0100
commitb72f59d414a398e3c64f1723f76e7dbaa5d73792 (patch)
treeaa8cb89fe4dd501a4d1f0d1b749a64c15dd96934 /shell/source/all
parentc18e25b533b12d73ae8bc58564f9eda45c26e3b1 (diff)
#i106374# clean up dead code (thanks cmc)
Diffstat (limited to 'shell/source/all')
-rw-r--r--shell/source/all/xml_parser.cxx14
1 files changed, 0 insertions, 14 deletions
diff --git a/shell/source/all/xml_parser.cxx b/shell/source/all/xml_parser.cxx
index 1c898afde0a2..046397f64b8b 100644
--- a/shell/source/all/xml_parser.cxx
+++ b/shell/source/all/xml_parser.cxx
@@ -90,14 +90,6 @@ xml_parser::xml_parser(const XML_Char* EncodingName) :
}
//###################################################
-xml_parser::xml_parser(const XML_Char* EncodingName, XML_Char /*NamespaceSeparator*/) :
- document_handler_(0),
- xml_parser_(XML_ParserCreate(EncodingName))
-{
- init();
-}
-
-//###################################################
xml_parser::~xml_parser()
{
XML_ParserFree(xml_parser_);
@@ -224,9 +216,3 @@ i_xml_parser_event_handler* xml_parser::get_document_handler() const
{
return document_handler_;
}
-
-//###################################################
-void xml_parser::set_encoding(const XML_Char* Encoding)
-{
- XML_SetEncoding(xml_parser_, Encoding);
-}