summaryrefslogtreecommitdiff
path: root/shell/source/all
diff options
context:
space:
mode:
authorTobias Krause <tkr@openoffice.org>2010-01-25 12:39:18 +0100
committerTobias Krause <tkr@openoffice.org>2010-01-25 12:39:18 +0100
commitf8037b9dc3b5d00ac8c99b7a1512b9691b05935d (patch)
tree7381d609a9ba5c6eebbbd3197ca1f9d30ec9190c /shell/source/all
parente9f7eaf63498eb1f08e79ffd879b4dabfd86675d (diff)
parent3b3e144c13a85b21b32904f245f44256c63e10e5 (diff)
tkr32: rebase from m65 to m70
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);
-}