diff options
-rw-r--r-- | forms/source/component/Grid.cxx | 4 | ||||
-rw-r--r-- | forms/source/component/Grid.hxx | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/forms/source/component/Grid.cxx b/forms/source/component/Grid.cxx index 22c772a4b05d..8d11fb5d5167 100644 --- a/forms/source/component/Grid.cxx +++ b/forms/source/component/Grid.cxx @@ -488,8 +488,10 @@ void OGridControlModel::getFastPropertyValue(Any& rValue, sal_Int32 nHandle ) co OControlModel::getFastPropertyValue( rValue, nHandle ); } } + sal_Bool OGridControlModel::convertFastPropertyValue( Any& rConvertedValue, Any& rOldValue, - sal_Int32 nHandle, const Any& rValue )throw( IllegalArgumentException ) + sal_Int32 nHandle, const Any& rValue ) + throw(IllegalArgumentException, RuntimeException, std::exception) { bool bModified(false); switch (nHandle) diff --git a/forms/source/component/Grid.hxx b/forms/source/component/Grid.hxx index a755350ec7c6..1a07ed0a0d52 100644 --- a/forms/source/component/Grid.hxx +++ b/forms/source/component/Grid.hxx @@ -147,7 +147,7 @@ public: virtual void SAL_CALL getFastPropertyValue(css::uno::Any& rValue, sal_Int32 nHandle ) const override; virtual sal_Bool SAL_CALL convertFastPropertyValue(css::uno::Any& rConvertedValue, css::uno::Any& rOldValue, sal_Int32 nHandle, const css::uno::Any& rValue ) - throw(css::lang::IllegalArgumentException) override; + throw(css::lang::IllegalArgumentException, css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL setFastPropertyValue_NoBroadcast(sal_Int32 nHandle, const css::uno::Any& rValue) throw ( css::uno::Exception, std::exception) override; // XPropertyState |