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

coverity#1215384 Uncaught exception

Change-Id: I833b8b9532c61f666755ed5e92135da3aeb55f27
üst fab0e8b4
......@@ -49,7 +49,7 @@ class ProgressBarWrapper : public UIElementWrapperBase
// wrapped methods of ::com::sun::star::task::XStatusIndicator
void start( const OUString& Text, ::sal_Int32 Range ) throw (css::uno::RuntimeException, std::exception);
void end() throw (::com::sun::star::uno::RuntimeException);
void setText( const OUString& Text ) throw (::com::sun::star::uno::RuntimeException);
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);
......
......@@ -153,7 +153,7 @@ throw (uno::RuntimeException)
}
void ProgressBarWrapper::setText( const OUString& Text )
throw (uno::RuntimeException)
throw (uno::RuntimeException, std::exception)
{
uno::Reference< awt::XWindow > xWindow;
sal_Int32 nValue( 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