diff options
author | Noel Grandin <noel@peralex.com> | 2014-05-27 09:56:28 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-05-27 10:50:04 +0200 |
commit | 9b6b260bcc236d109546758796519bca0dd02eba (patch) | |
tree | 065f2d8c297c481631432d71e4d433592d6b6598 /sd | |
parent | 56c4dbe523bd7c0d30f7d7590ac8eaf519e8490d (diff) |
cid#707139 Uncaught exception
Change-Id: I4d821c576fef09ca7935a931b1632238ae550df9
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/unoidl/unopool.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sd/source/ui/unoidl/unopool.cxx b/sd/source/ui/unoidl/unopool.cxx index 857874bf1b0d..b58658031b45 100644 --- a/sd/source/ui/unoidl/unopool.cxx +++ b/sd/source/ui/unoidl/unopool.cxx @@ -50,7 +50,8 @@ public: virtual ~SdUnoDrawPool() throw(); protected: - virtual void putAny( SfxItemPool* pPool, const PropertyMapEntry* pEntry, const uno::Any& rValue ) throw( beans::UnknownPropertyException, lang::IllegalArgumentException) SAL_OVERRIDE; + virtual void putAny( SfxItemPool* pPool, const PropertyMapEntry* pEntry, const uno::Any& rValue ) + throw( beans::UnknownPropertyException, lang::IllegalArgumentException, uno::RuntimeException ) SAL_OVERRIDE; private: SdDrawDocument* mpDrawModel; @@ -66,7 +67,7 @@ SdUnoDrawPool::~SdUnoDrawPool() throw() } void SdUnoDrawPool::putAny( SfxItemPool* pPool, const comphelper::PropertyMapEntry* pEntry, const uno::Any& rValue ) - throw(beans::UnknownPropertyException, lang::IllegalArgumentException) + throw(beans::UnknownPropertyException, lang::IllegalArgumentException, uno::RuntimeException) { switch( pEntry->mnHandle ) { |