summaryrefslogtreecommitdiff
path: root/sd/source/ui/inc/framework/Pane.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/inc/framework/Pane.hxx')
-rw-r--r--sd/source/ui/inc/framework/Pane.hxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/sd/source/ui/inc/framework/Pane.hxx b/sd/source/ui/inc/framework/Pane.hxx
index b5b9d0275988..4710029913bc 100644
--- a/sd/source/ui/inc/framework/Pane.hxx
+++ b/sd/source/ui/inc/framework/Pane.hxx
@@ -98,46 +98,46 @@ public:
*/
virtual cssu::Reference<css::awt::XWindow>
SAL_CALL getWindow (void)
- throw (cssu::RuntimeException);
+ throw (cssu::RuntimeException, std::exception);
virtual cssu::Reference<css::rendering::XCanvas>
SAL_CALL getCanvas (void)
- throw (cssu::RuntimeException);
+ throw (cssu::RuntimeException, std::exception);
//----- XPane2 -------------------------------------------------------------
virtual sal_Bool SAL_CALL isVisible (void)
- throw (cssu::RuntimeException);
+ throw (cssu::RuntimeException, std::exception);
virtual void SAL_CALL setVisible (sal_Bool bIsVisible)
- throw (cssu::RuntimeException);
+ throw (cssu::RuntimeException, std::exception);
virtual cssu::Reference<css::accessibility::XAccessible> SAL_CALL getAccessible (void)
- throw (cssu::RuntimeException);
+ throw (cssu::RuntimeException, std::exception);
virtual void SAL_CALL setAccessible (
const cssu::Reference<css::accessibility::XAccessible>& rxAccessible)
- throw (cssu::RuntimeException);
+ throw (cssu::RuntimeException, std::exception);
//----- XResource ---------------------------------------------------------
virtual ::com::sun::star::uno::Reference<com::sun::star::drawing::framework::XResourceId>
SAL_CALL getResourceId (void)
- throw (::com::sun::star::uno::RuntimeException);
+ throw (::com::sun::star::uno::RuntimeException, std::exception);
/** For the typical pane it makes no sense to be dislayed without a
view. Therefore this default implementation returns always <TRUE/>.
*/
virtual sal_Bool SAL_CALL isAnchorOnly (void)
- throw (com::sun::star::uno::RuntimeException);
+ throw (com::sun::star::uno::RuntimeException, std::exception);
//----- XUnoTunnel --------------------------------------------------------
virtual sal_Int64 SAL_CALL getSomething (const com::sun::star::uno::Sequence<sal_Int8>& rId)
- throw (com::sun::star::uno::RuntimeException);
+ throw (com::sun::star::uno::RuntimeException, std::exception);
protected: