summaryrefslogtreecommitdiff
path: root/forms/source/inc
diff options
context:
space:
mode:
Diffstat (limited to 'forms/source/inc')
-rw-r--r--forms/source/inc/InterfaceContainer.hxx2
-rw-r--r--forms/source/inc/controlfeatureinterception.hxx6
-rw-r--r--forms/source/inc/listenercontainers.hxx4
3 files changed, 6 insertions, 6 deletions
diff --git a/forms/source/inc/InterfaceContainer.hxx b/forms/source/inc/InterfaceContainer.hxx
index 9dc224d7acb7..a75f39278637 100644
--- a/forms/source/inc/InterfaceContainer.hxx
+++ b/forms/source/inc/InterfaceContainer.hxx
@@ -263,7 +263,7 @@ protected:
@throws ::com::sun::star::lang::IndexOutOfBoundsException
if the given index does not denote a valid position in our children array
*/
- void implCheckIndex( const sal_Int32 _nIndex ) SAL_THROW( ( ::com::sun::star::lang::IndexOutOfBoundsException ) );
+ void implCheckIndex( const sal_Int32 _nIndex );
private:
// hack for Vba Events
diff --git a/forms/source/inc/controlfeatureinterception.hxx b/forms/source/inc/controlfeatureinterception.hxx
index 3881a6ebde2e..381eb32f0341 100644
--- a/forms/source/inc/controlfeatureinterception.hxx
+++ b/forms/source/inc/controlfeatureinterception.hxx
@@ -71,18 +71,18 @@ namespace frm
/** queries the interceptor chain for the given dispatch
*/
::com::sun::star::uno::Reference< ::com::sun::star::frame::XDispatch >
- queryDispatch( const ::com::sun::star::util::URL& _rURL, const OUString& _rTargetFrameName, ::sal_Int32 _nSearchFlags ) SAL_THROW((::com::sun::star::uno::RuntimeException));
+ queryDispatch( const ::com::sun::star::util::URL& _rURL, const OUString& _rTargetFrameName, ::sal_Int32 _nSearchFlags );
/** queries the interceptor chain for the given dispatch, with a blank target frame and no frame search flags
*/
::com::sun::star::uno::Reference< ::com::sun::star::frame::XDispatch >
- queryDispatch( const ::com::sun::star::util::URL& _rURL ) SAL_THROW((::com::sun::star::uno::RuntimeException));
+ queryDispatch( const ::com::sun::star::util::URL& _rURL );
/** queries the interceptor chain for the URL given as ASCII string,
with a blank target frame and no frame search flags
*/
::com::sun::star::uno::Reference< ::com::sun::star::frame::XDispatch >
- queryDispatch( const sal_Char* _pAsciiURL ) SAL_THROW((::com::sun::star::uno::RuntimeException));
+ queryDispatch( const sal_Char* _pAsciiURL );
};
diff --git a/forms/source/inc/listenercontainers.hxx b/forms/source/inc/listenercontainers.hxx
index 77ca03a9c7b1..d373600aa151 100644
--- a/forms/source/inc/listenercontainers.hxx
+++ b/forms/source/inc/listenercontainers.hxx
@@ -54,7 +54,7 @@ namespace frm
virtual bool implTypedNotify(
const ::com::sun::star::uno::Reference< ListenerClass >& _rxListener,
const EventClass& _rEvent
- ) SAL_THROW( ( ::com::sun::star::uno::Exception ) ) = 0;
+ ) = 0;
public:
inline bool notify()
@@ -112,7 +112,7 @@ namespace frm
virtual bool implTypedNotify(
const ::com::sun::star::uno::Reference< ::com::sun::star::form::XResetListener >& _rxListener,
const ::com::sun::star::lang::EventObject& _rEvent
- ) SAL_THROW( ( ::com::sun::star::uno::Exception ) ) SAL_OVERRIDE;
+ ) SAL_OVERRIDE;
};