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

coverity#1219797 Uncaught exception

Change-Id: I597fb90d677e7cade71bf6cbf7f7bce9d3bd05f6
üst 49572624
...@@ -51,7 +51,7 @@ class ProgressBarWrapper : public UIElementWrapperBase ...@@ -51,7 +51,7 @@ class ProgressBarWrapper : public UIElementWrapperBase
void end() throw (css::uno::RuntimeException, std::exception); void end() throw (css::uno::RuntimeException, std::exception);
void setText( const OUString& Text ) 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 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 // UNO interfaces
// XComponent // XComponent
......
...@@ -237,7 +237,7 @@ void ProgressBarWrapper::setValue( ::sal_Int32 nValue ) ...@@ -237,7 +237,7 @@ void ProgressBarWrapper::setValue( ::sal_Int32 nValue )
} }
void ProgressBarWrapper::reset() void ProgressBarWrapper::reset()
throw (uno::RuntimeException) throw (uno::RuntimeException, std::exception)
{ {
setText( OUString() ); setText( OUString() );
setValue( 0 ); setValue( 0 );
......
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