Kaydet (Commit) 1a92a885 authored tarafından Noel Grandin's avatar Noel Grandin

fdo#46808, Convert some bits to new-style UNO

Change-Id: I505910ae117588d54b79e72c12368224b4632fb9
üst b8d4b865
......@@ -85,9 +85,7 @@ ImageHelper::getGraphicAndGraphicObjectFromURL_nothrow( uno::Reference< graphic:
{
// graphic manager uniqueid
rtl::OUString sID = _rURL.copy( sizeof( UNO_NAME_GRAPHOBJ_URLPREFIX ) - 1 );
// get the DefaultContext
::comphelper::ComponentContext aContext( ::comphelper::getProcessServiceFactory() );
xOutGraphicObj = graphic::GraphicObject::createWithId( aContext.getUNOContext(), sID );
xOutGraphicObj = graphic::GraphicObject::createWithId( ::comphelper::getProcessComponentContext(), sID );
}
else // linked
xOutGraphicObj = NULL; // release the GraphicObject
......
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment