fdo#46808, Convert some bits to new-style UNO
Change-Id: I505910ae117588d54b79e72c12368224b4632fb9
This commit is contained in:
@@ -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);
|
||||
|
Reference in New Issue
Block a user