summaryrefslogtreecommitdiff
path: root/sd/source/ui/framework/factories/Pane.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/framework/factories/Pane.cxx')
-rw-r--r--sd/source/ui/framework/factories/Pane.cxx11
1 files changed, 0 insertions, 11 deletions
diff --git a/sd/source/ui/framework/factories/Pane.cxx b/sd/source/ui/framework/factories/Pane.cxx
index 20fec54b9f64..2429c1467d28 100644
--- a/sd/source/ui/framework/factories/Pane.cxx
+++ b/sd/source/ui/framework/factories/Pane.cxx
@@ -64,7 +64,6 @@ vcl::Window* Pane::GetWindow()
//----- XPane -----------------------------------------------------------------
Reference<awt::XWindow> SAL_CALL Pane::getWindow()
- throw (RuntimeException, std::exception)
{
ThrowIfDisposed();
@@ -72,7 +71,6 @@ Reference<awt::XWindow> SAL_CALL Pane::getWindow()
}
Reference<rendering::XCanvas> SAL_CALL Pane::getCanvas()
- throw (RuntimeException, std::exception)
{
::osl::MutexGuard aGuard (maMutex);
ThrowIfDisposed();
@@ -86,7 +84,6 @@ Reference<rendering::XCanvas> SAL_CALL Pane::getCanvas()
//----- XPane2 ----------------------------------------------------------------
sal_Bool SAL_CALL Pane::isVisible()
- throw (RuntimeException, std::exception)
{
ThrowIfDisposed();
@@ -98,7 +95,6 @@ sal_Bool SAL_CALL Pane::isVisible()
}
void SAL_CALL Pane::setVisible (sal_Bool bIsVisible)
- throw (RuntimeException, std::exception)
{
ThrowIfDisposed();
@@ -108,7 +104,6 @@ void SAL_CALL Pane::setVisible (sal_Bool bIsVisible)
}
Reference<css::accessibility::XAccessible> SAL_CALL Pane::getAccessible()
- throw (RuntimeException, std::exception)
{
ThrowIfDisposed();
vcl::Window* pWindow = GetWindow();
@@ -120,7 +115,6 @@ Reference<css::accessibility::XAccessible> SAL_CALL Pane::getAccessible()
void SAL_CALL Pane::setAccessible (
const Reference<css::accessibility::XAccessible>& rxAccessible)
- throw (RuntimeException, std::exception)
{
ThrowIfDisposed();
vcl::Window* pWindow = GetWindow();
@@ -131,7 +125,6 @@ void SAL_CALL Pane::setAccessible (
//----- XResource -------------------------------------------------------------
Reference<XResourceId> SAL_CALL Pane::getResourceId()
- throw (RuntimeException, std::exception)
{
ThrowIfDisposed();
@@ -139,7 +132,6 @@ Reference<XResourceId> SAL_CALL Pane::getResourceId()
}
sal_Bool SAL_CALL Pane::isAnchorOnly()
- throw (RuntimeException, std::exception)
{
return true;
}
@@ -157,7 +149,6 @@ const Sequence<sal_Int8>& Pane::getUnoTunnelId()
}
sal_Int64 SAL_CALL Pane::getSomething (const Sequence<sal_Int8>& rId)
- throw (RuntimeException, std::exception)
{
sal_Int64 nResult = 0;
@@ -171,7 +162,6 @@ sal_Int64 SAL_CALL Pane::getSomething (const Sequence<sal_Int8>& rId)
}
Reference<rendering::XCanvas> Pane::CreateCanvas()
- throw (RuntimeException)
{
Reference<rendering::XCanvas> xCanvas;
@@ -187,7 +177,6 @@ Reference<rendering::XCanvas> Pane::CreateCanvas()
}
void Pane::ThrowIfDisposed() const
- throw (lang::DisposedException)
{
if (rBHelper.bDisposed || rBHelper.bInDispose)
{