summaryrefslogtreecommitdiff
path: root/framework/source/uielement/progressbarwrapper.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'framework/source/uielement/progressbarwrapper.cxx')
-rw-r--r--framework/source/uielement/progressbarwrapper.cxx9
1 files changed, 0 insertions, 9 deletions
diff --git a/framework/source/uielement/progressbarwrapper.cxx b/framework/source/uielement/progressbarwrapper.cxx
index c858484ad715..07f34520c5aa 100644
--- a/framework/source/uielement/progressbarwrapper.cxx
+++ b/framework/source/uielement/progressbarwrapper.cxx
@@ -84,7 +84,6 @@ uno::Reference< awt::XWindow > ProgressBarWrapper::getStatusBar() const
// wrapped methods of css::task::XStatusIndicator
void ProgressBarWrapper::start( const OUString& Text, ::sal_Int32 Range )
- throw (uno::RuntimeException, std::exception)
{
uno::Reference< awt::XWindow > xWindow;
sal_Int32 nValue( 0 );
@@ -124,7 +123,6 @@ void ProgressBarWrapper::start( const OUString& Text, ::sal_Int32 Range )
}
void ProgressBarWrapper::end()
- throw (uno::RuntimeException, std::exception)
{
uno::Reference< awt::XWindow > xWindow;
@@ -153,7 +151,6 @@ void ProgressBarWrapper::end()
}
void ProgressBarWrapper::setText( const OUString& Text )
- throw (uno::RuntimeException, std::exception)
{
uno::Reference< awt::XWindow > xWindow;
sal_Int32 nValue( 0 );
@@ -191,7 +188,6 @@ void ProgressBarWrapper::setText( const OUString& Text )
}
void ProgressBarWrapper::setValue( ::sal_Int32 nValue )
- throw (uno::RuntimeException, std::exception)
{
uno::Reference< awt::XWindow > xWindow;
OUString aText;
@@ -237,7 +233,6 @@ void ProgressBarWrapper::setValue( ::sal_Int32 nValue )
}
void ProgressBarWrapper::reset()
- throw (uno::RuntimeException, std::exception)
{
setText( OUString() );
setValue( 0 );
@@ -245,21 +240,18 @@ void ProgressBarWrapper::reset()
// XInitialization
void SAL_CALL ProgressBarWrapper::initialize( const uno::Sequence< uno::Any >& )
-throw (uno::Exception, uno::RuntimeException, std::exception)
{
// dummy - do nothing
}
// XUpdatable
void SAL_CALL ProgressBarWrapper::update()
-throw (uno::RuntimeException, std::exception)
{
// dummy - do nothing
}
// XComponent
void SAL_CALL ProgressBarWrapper::dispose()
-throw (uno::RuntimeException, std::exception)
{
uno::Reference< lang::XComponent > xThis(
static_cast< cppu::OWeakObject* >(this),
@@ -297,7 +289,6 @@ throw (uno::RuntimeException, std::exception)
// XUIElement
uno::Reference< uno::XInterface > SAL_CALL ProgressBarWrapper::getRealInterface()
-throw (uno::RuntimeException, std::exception)
{
SolarMutexGuard g;