coverity#706277 Uncaught exception
Change-Id: I1941e0a3a662faaac1fb9374437f3984b3a5c6d8
This commit is contained in:
@@ -51,12 +51,12 @@ public:
|
|||||||
// XSingleComponentFactory:
|
// XSingleComponentFactory:
|
||||||
virtual uno::Reference<uno::XInterface> SAL_CALL createInstanceWithContext(
|
virtual uno::Reference<uno::XInterface> SAL_CALL createInstanceWithContext(
|
||||||
uno::Reference<uno::XComponentContext> const& xContext )
|
uno::Reference<uno::XComponentContext> const& xContext )
|
||||||
throw (uno::Exception);
|
throw (uno::Exception, std::exception);
|
||||||
virtual uno::Reference<uno::XInterface> SAL_CALL
|
virtual uno::Reference<uno::XInterface> SAL_CALL
|
||||||
createInstanceWithArgumentsAndContext(
|
createInstanceWithArgumentsAndContext(
|
||||||
uno::Sequence<uno::Any> const& args,
|
uno::Sequence<uno::Any> const& args,
|
||||||
uno::Reference<uno::XComponentContext> const& xContext )
|
uno::Reference<uno::XComponentContext> const& xContext )
|
||||||
throw (uno::Exception);
|
throw (uno::Exception, std::exception);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
virtual ~Factory();
|
virtual ~Factory();
|
||||||
@@ -90,7 +90,7 @@ uno::Sequence<OUString> ServiceDecl::Factory::getSupportedServiceNames()
|
|||||||
// XSingleComponentFactory:
|
// XSingleComponentFactory:
|
||||||
uno::Reference<uno::XInterface> ServiceDecl::Factory::createInstanceWithContext(
|
uno::Reference<uno::XInterface> ServiceDecl::Factory::createInstanceWithContext(
|
||||||
uno::Reference<uno::XComponentContext> const& xContext )
|
uno::Reference<uno::XComponentContext> const& xContext )
|
||||||
throw (uno::Exception)
|
throw (uno::Exception, std::exception)
|
||||||
{
|
{
|
||||||
return m_rServiceDecl.m_createFunc(
|
return m_rServiceDecl.m_createFunc(
|
||||||
m_rServiceDecl, uno::Sequence<uno::Any>(), xContext );
|
m_rServiceDecl, uno::Sequence<uno::Any>(), xContext );
|
||||||
@@ -100,7 +100,7 @@ uno::Reference<uno::XInterface>
|
|||||||
ServiceDecl::Factory::createInstanceWithArgumentsAndContext(
|
ServiceDecl::Factory::createInstanceWithArgumentsAndContext(
|
||||||
uno::Sequence<uno::Any > const& args,
|
uno::Sequence<uno::Any > const& args,
|
||||||
uno::Reference<uno::XComponentContext> const& xContext )
|
uno::Reference<uno::XComponentContext> const& xContext )
|
||||||
throw (uno::Exception)
|
throw (uno::Exception, std::exception)
|
||||||
{
|
{
|
||||||
return m_rServiceDecl.m_createFunc(
|
return m_rServiceDecl.m_createFunc(
|
||||||
m_rServiceDecl, args, xContext );
|
m_rServiceDecl, args, xContext );
|
||||||
|
Reference in New Issue
Block a user