diff options
Diffstat (limited to 'framework')
-rw-r--r-- | framework/inc/uielement/progressbarwrapper.hxx | 2 | ||||
-rw-r--r-- | framework/source/uielement/progressbarwrapper.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/framework/inc/uielement/progressbarwrapper.hxx b/framework/inc/uielement/progressbarwrapper.hxx index 15fec13e1136..cc1887d4ca5e 100644 --- a/framework/inc/uielement/progressbarwrapper.hxx +++ b/framework/inc/uielement/progressbarwrapper.hxx @@ -51,7 +51,7 @@ class ProgressBarWrapper : public UIElementWrapperBase void end() throw (css::uno::RuntimeException, std::exception); void setText( const OUString& Text ) throw (css::uno::RuntimeException, std::exception); void setValue( ::sal_Int32 Value ) throw (css::uno::RuntimeException, std::exception); - void reset() throw (::com::sun::star::uno::RuntimeException); + void reset() throw (css::uno::RuntimeException, std::exception); // UNO interfaces // XComponent diff --git a/framework/source/uielement/progressbarwrapper.cxx b/framework/source/uielement/progressbarwrapper.cxx index 2b2bfaaf0d46..011e244d6ec9 100644 --- a/framework/source/uielement/progressbarwrapper.cxx +++ b/framework/source/uielement/progressbarwrapper.cxx @@ -237,7 +237,7 @@ void ProgressBarWrapper::setValue( ::sal_Int32 nValue ) } void ProgressBarWrapper::reset() -throw (uno::RuntimeException) + throw (uno::RuntimeException, std::exception) { setText( OUString() ); setValue( 0 ); |