Kaydet (Commit) e2c16379 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1308537 Uncaught exception

Change-Id: I5debb6c3fe00b13134d9efa152d86e41fc6d3fe3
üst 4be5bc29
......@@ -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 )
{
......
......@@ -148,7 +148,7 @@ void SvxUnoDrawPool::getAny( SfxItemPool* pPool, const comphelper::PropertyMapEn
}
void SvxUnoDrawPool::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)
{
uno::Any aValue( rValue );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment