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

coverity#1215383 Uncaught exception

Change-Id: I568ba1a942acd622611fb53210e303147b77601f
üst 6cda7d57
......@@ -48,7 +48,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 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);
......
......@@ -124,7 +124,7 @@ void ProgressBarWrapper::start( const OUString& Text, ::sal_Int32 Range )
}
void ProgressBarWrapper::end()
throw (uno::RuntimeException)
throw (uno::RuntimeException, std::exception)
{
uno::Reference< awt::XWindow > xWindow;
......
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