summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-01-09 13:33:51 +0200
committerNoel Grandin <noel@peralex.com>2013-01-28 08:22:27 +0200
commit1a92a885d65860b4b09b426bb4b10f7a6a336571 (patch)
tree6b35af947a311a01df4a152d1d9dc155f82afa91 /ucb
parentb8d4b8656f1f4e4782ba7460070e99babc8a499e (diff)
fdo#46808, Convert some bits to new-style UNO
Change-Id: I505910ae117588d54b79e72c12368224b4632fb9
Diffstat (limited to 'ucb')
-rw-r--r--ucb/source/ucp/webdav/webdavresponseparser.cxx8
1 files changed, 3 insertions, 5 deletions
diff --git a/ucb/source/ucp/webdav/webdavresponseparser.cxx b/ucb/source/ucp/webdav/webdavresponseparser.cxx
index 88b51da2cef4..01240d495179 100644
--- a/ucb/source/ucp/webdav/webdavresponseparser.cxx
+++ b/ucb/source/ucp/webdav/webdavresponseparser.cxx
@@ -20,7 +20,7 @@
#include <webdavresponseparser.hxx>
#include <com/sun/star/xml/sax/XDocumentHandler.hpp>
#include <cppuhelper/implbase2.hxx>
-#include <com/sun/star/xml/sax/XParser.hpp>
+#include <com/sun/star/xml/sax/Parser.hpp>
#include <com/sun/star/xml/sax/InputSource.hpp>
#include <comphelper/processfactory.hxx>
#include <comphelper/seqstream.hxx>
@@ -819,10 +819,8 @@ namespace
myInputSource.aInputStream = xInputStream;
// get parser
- uno::Reference< xml::sax::XParser > xParser(
- comphelper::getProcessServiceFactory()->createInstance(
- rtl::OUString::createFromAscii("com.sun.star.xml.sax.Parser") ),
- uno::UNO_QUERY_THROW );
+ uno::Reference< xml::sax::XParser > xParser = xml::sax::Parser::create(
+ comphelper::getProcessComponentContext() );
// create parser; connect parser and filter
WebDAVResponseParser* pWebDAVResponseParser = new WebDAVResponseParser(eWebDAVResponseParserMode);