summaryrefslogtreecommitdiff
path: root/svtools/source/hatchwindow/hatchwindow.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svtools/source/hatchwindow/hatchwindow.cxx')
-rw-r--r--svtools/source/hatchwindow/hatchwindow.cxx11
1 files changed, 2 insertions, 9 deletions
diff --git a/svtools/source/hatchwindow/hatchwindow.cxx b/svtools/source/hatchwindow/hatchwindow.cxx
index e7216d25f256..8e0faf1f4994 100644
--- a/svtools/source/hatchwindow/hatchwindow.cxx
+++ b/svtools/source/hatchwindow/hatchwindow.cxx
@@ -109,7 +109,6 @@ void VCLXHatchWindow::InplaceDeactivate()
uno::Any SAL_CALL VCLXHatchWindow::queryInterface( const uno::Type & rType )
- throw( uno::RuntimeException, std::exception )
{
// Attention:
// Don't use mutex or guard in this method!!! Is a method of XInterface.
@@ -138,7 +137,6 @@ void SAL_CALL VCLXHatchWindow::release()
}
uno::Sequence< uno::Type > SAL_CALL VCLXHatchWindow::getTypes()
- throw( uno::RuntimeException, std::exception )
{
static ::cppu::OTypeCollection* pTypeCollection = nullptr ;
@@ -160,17 +158,16 @@ uno::Sequence< uno::Type > SAL_CALL VCLXHatchWindow::getTypes()
}
uno::Sequence< sal_Int8 > SAL_CALL VCLXHatchWindow::getImplementationId()
- throw( uno::RuntimeException, std::exception )
{
return css::uno::Sequence<sal_Int8>();
}
-css::awt::Size SAL_CALL VCLXHatchWindow::getHatchBorderSize() throw (css::uno::RuntimeException, std::exception)
+css::awt::Size SAL_CALL VCLXHatchWindow::getHatchBorderSize()
{
return aHatchBorderSize;
}
-void SAL_CALL VCLXHatchWindow::setHatchBorderSize( const css::awt::Size& _hatchbordersize ) throw (css::uno::RuntimeException, std::exception)
+void SAL_CALL VCLXHatchWindow::setHatchBorderSize( const css::awt::Size& _hatchbordersize )
{
if ( pHatchWindow )
{
@@ -180,26 +177,22 @@ void SAL_CALL VCLXHatchWindow::setHatchBorderSize( const css::awt::Size& _hatchb
}
void SAL_CALL VCLXHatchWindow::setController( const uno::Reference< embed::XHatchWindowController >& xController )
- throw (uno::RuntimeException, std::exception)
{
m_xController = xController;
}
void SAL_CALL VCLXHatchWindow::dispose()
- throw (uno::RuntimeException, std::exception)
{
pHatchWindow.clear();
VCLXWindow::dispose();
}
void SAL_CALL VCLXHatchWindow::addEventListener( const uno::Reference< lang::XEventListener >& xListener )
- throw (uno::RuntimeException, std::exception)
{
VCLXWindow::addEventListener( xListener );
}
void SAL_CALL VCLXHatchWindow::removeEventListener( const uno::Reference< lang::XEventListener >& xListener )
- throw (uno::RuntimeException, std::exception)
{
VCLXWindow::removeEventListener( xListener );
}