diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-06-03 16:51:48 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-06-03 20:10:17 +0100 |
commit | 229abf40ac4ee551063cdefabede3c9b31146e07 (patch) | |
tree | 6e67f87cb7def70128f11565a05e8eb6c7314ab8 /framework | |
parent | 0301abbbc33c794fccd4e84f75b6de4c296f957c (diff) |
coverity#1219794 Uncaught exception
Change-Id: Icc9e5faf9ef15840c359b7766112278094d52dea
Diffstat (limited to 'framework')
-rw-r--r-- | framework/inc/uiconfiguration/imagemanager.hxx | 5 | ||||
-rw-r--r-- | framework/source/uiconfiguration/imagemanager.cxx | 5 |
2 files changed, 7 insertions, 3 deletions
diff --git a/framework/inc/uiconfiguration/imagemanager.hxx b/framework/inc/uiconfiguration/imagemanager.hxx index 9ad1c4531498..1a1883988589 100644 --- a/framework/inc/uiconfiguration/imagemanager.hxx +++ b/framework/inc/uiconfiguration/imagemanager.hxx @@ -84,7 +84,10 @@ namespace framework virtual void SAL_CALL initialize( const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >& aArguments ) throw (::com::sun::star::uno::Exception, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; // XImageManager - virtual void SAL_CALL reset() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + virtual void SAL_CALL reset() + throw (css::lang::IllegalAccessException, + css::uno::RuntimeException, + std::exception) SAL_OVERRIDE; virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getAllImageNames( ::sal_Int16 nImageType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; virtual sal_Bool SAL_CALL hasImage( ::sal_Int16 nImageType, const OUString& aCommandURL ) throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Reference< ::com::sun::star::graphic::XGraphic > > SAL_CALL getImages( ::sal_Int16 nImageType, const ::com::sun::star::uno::Sequence< OUString >& aCommandURLSequence ) throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; diff --git a/framework/source/uiconfiguration/imagemanager.cxx b/framework/source/uiconfiguration/imagemanager.cxx index 60770cbbe5ad..20cac0ff8d2a 100644 --- a/framework/source/uiconfiguration/imagemanager.cxx +++ b/framework/source/uiconfiguration/imagemanager.cxx @@ -102,9 +102,10 @@ void SAL_CALL ImageManager::initialize( const Sequence< Any >& aArguments ) thro // XImageManager void SAL_CALL ImageManager::reset() -throw (::com::sun::star::uno::RuntimeException, std::exception) + throw (css::lang::IllegalAccessException, + css::uno::RuntimeException, + std::exception) { - /* SAFE AREA ----------------------------------------------------------------------------------------------- */ m_pImpl->reset(); } |