diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-06-28 17:15:20 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-06-28 17:55:58 +0100 |
commit | e2c163793f16bfaf39a87e9692c57da0665f6475 (patch) | |
tree | 504bfc19e6483a24de1d38cc776896ea0e032eb2 /sd/source/ui/unoidl/unopool.cxx | |
parent | 4be5bc29307934f7cc002752571be76192aa25f1 (diff) |
coverity#1308537 Uncaught exception
Change-Id: I5debb6c3fe00b13134d9efa152d86e41fc6d3fe3
Diffstat (limited to 'sd/source/ui/unoidl/unopool.cxx')
-rw-r--r-- | sd/source/ui/unoidl/unopool.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/unoidl/unopool.cxx b/sd/source/ui/unoidl/unopool.cxx index 2ff105a8b569..01d80b7c7a3f 100644 --- a/sd/source/ui/unoidl/unopool.cxx +++ b/sd/source/ui/unoidl/unopool.cxx @@ -50,7 +50,7 @@ public: protected: virtual void putAny( SfxItemPool* pPool, const PropertyMapEntry* pEntry, const uno::Any& rValue ) - throw( beans::UnknownPropertyException, lang::IllegalArgumentException, uno::RuntimeException ) SAL_OVERRIDE; + throw( beans::UnknownPropertyException, lang::IllegalArgumentException, uno::RuntimeException, std::exception ) SAL_OVERRIDE; private: SdDrawDocument* mpDrawModel; @@ -66,7 +66,7 @@ SdUnoDrawPool::~SdUnoDrawPool() throw() } void SdUnoDrawPool::putAny( SfxItemPool* pPool, const comphelper::PropertyMapEntry* pEntry, const uno::Any& rValue ) - throw(beans::UnknownPropertyException, lang::IllegalArgumentException, uno::RuntimeException) + throw(beans::UnknownPropertyException, lang::IllegalArgumentException, uno::RuntimeException, std::exception) { switch( pEntry->mnHandle ) { |