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

coverity#983964 Uncaught exception

Change-Id: Ieb298e45512ab4c0384ea2d7ef6adcc4adc39923
üst f3ba1de5
...@@ -79,7 +79,11 @@ namespace comphelper ...@@ -79,7 +79,11 @@ namespace comphelper
css::uno::RuntimeException) = 0; css::uno::RuntimeException) = 0;
virtual void _preGetValues () virtual void _preGetValues ()
throw(::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::beans::PropertyVetoException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::lang::WrappedTargetException ) = 0; throw (css::beans::UnknownPropertyException,
css::beans::PropertyVetoException,
css::lang::IllegalArgumentException,
css::lang::WrappedTargetException,
css::uno::RuntimeException) = 0;
virtual void _getSingleValue( const comphelper::PropertyInfo & rInfo, ::com::sun::star::uno::Any & rValue ) virtual void _getSingleValue( const comphelper::PropertyInfo & rInfo, ::com::sun::star::uno::Any & rValue )
throw (css::beans::UnknownPropertyException, throw (css::beans::UnknownPropertyException,
css::lang::WrappedTargetException, css::lang::WrappedTargetException,
......
...@@ -148,7 +148,11 @@ protected: ...@@ -148,7 +148,11 @@ protected:
throw(::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::beans::PropertyVetoException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::lang::WrappedTargetException ) SAL_OVERRIDE; throw(::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::beans::PropertyVetoException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::lang::WrappedTargetException ) SAL_OVERRIDE;
virtual void _preGetValues () virtual void _preGetValues ()
throw(::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::beans::PropertyVetoException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::lang::WrappedTargetException ) SAL_OVERRIDE; throw (css::beans::UnknownPropertyException,
css::beans::PropertyVetoException,
css::lang::IllegalArgumentException,
css::lang::WrappedTargetException,
css::uno::RuntimeException) SAL_OVERRIDE;
virtual void _getSingleValue( const comphelper::PropertyInfo & rInfo, ::com::sun::star::uno::Any & rValue ) virtual void _getSingleValue( const comphelper::PropertyInfo & rInfo, ::com::sun::star::uno::Any & rValue )
throw (css::beans::UnknownPropertyException, throw (css::beans::UnknownPropertyException,
css::lang::WrappedTargetException, css::lang::WrappedTargetException,
......
...@@ -816,7 +816,9 @@ void SwXViewSettings::_postSetValues () ...@@ -816,7 +816,9 @@ void SwXViewSettings::_postSetValues ()
} }
void SwXViewSettings::_preGetValues () void SwXViewSettings::_preGetValues ()
throw(UnknownPropertyException, PropertyVetoException, IllegalArgumentException, WrappedTargetException ) throw (UnknownPropertyException, PropertyVetoException,
IllegalArgumentException, WrappedTargetException,
RuntimeException)
{ {
if(pView) if(pView)
{ {
......
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