summaryrefslogtreecommitdiff
path: root/forms/source/xforms/binding.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'forms/source/xforms/binding.hxx')
-rw-r--r--forms/source/xforms/binding.hxx71
1 files changed, 21 insertions, 50 deletions
diff --git a/forms/source/xforms/binding.hxx b/forms/source/xforms/binding.hxx
index 6a75a7e9ea98..9f1220ff1618 100644
--- a/forms/source/xforms/binding.hxx
+++ b/forms/source/xforms/binding.hxx
@@ -266,7 +266,7 @@ private:
/// (to be used be API methods before acting on the object)
///
/// @throws css::uno::RuntimeException
- void checkLive() throw( css::uno::RuntimeException );
+ void checkLive();
/// determine whether object is live
/// live: has model, and model has been initialized
@@ -321,65 +321,43 @@ private:
public:
- virtual css::uno::Sequence<css::uno::Type> SAL_CALL getSupportedValueTypes()
- throw( css::uno::RuntimeException, std::exception ) override;
+ virtual css::uno::Sequence<css::uno::Type> SAL_CALL getSupportedValueTypes() override;
- virtual sal_Bool SAL_CALL supportsType( const css::uno::Type& aType )
- throw( css::uno::RuntimeException, std::exception ) override;
+ virtual sal_Bool SAL_CALL supportsType( const css::uno::Type& aType ) override;
- virtual css::uno::Any SAL_CALL getValue( const css::uno::Type& aType )
- throw( css::form::binding::IncompatibleTypesException,
- css::uno::RuntimeException, std::exception ) override;
+ virtual css::uno::Any SAL_CALL getValue( const css::uno::Type& aType ) override;
- virtual void SAL_CALL setValue( const css::uno::Any& aValue )
- throw( css::form::binding::IncompatibleTypesException,
- css::form::binding::InvalidBindingStateException,
- css::lang::NoSupportException,
- css::uno::RuntimeException, std::exception ) override;
+ virtual void SAL_CALL setValue( const css::uno::Any& aValue ) override;
// XListEntry Source
- virtual sal_Int32 SAL_CALL getListEntryCount()
- throw( css::uno::RuntimeException, std::exception ) override;
+ virtual sal_Int32 SAL_CALL getListEntryCount() override;
- virtual OUString SAL_CALL getListEntry( sal_Int32 nPosition )
- throw( css::lang::IndexOutOfBoundsException,
- css::uno::RuntimeException, std::exception ) override;
+ virtual OUString SAL_CALL getListEntry( sal_Int32 nPosition ) override;
- virtual css::uno::Sequence<OUString> SAL_CALL getAllListEntries()
- throw( css::uno::RuntimeException, std::exception ) override;
+ virtual css::uno::Sequence<OUString> SAL_CALL getAllListEntries() override;
- virtual void SAL_CALL addListEntryListener( const css::uno::Reference<css::form::binding::XListEntryListener>& )
- throw( css::lang::NullPointerException,
- css::uno::RuntimeException, std::exception ) override;
+ virtual void SAL_CALL addListEntryListener( const css::uno::Reference<css::form::binding::XListEntryListener>& ) override;
- virtual void SAL_CALL removeListEntryListener( const css::uno::Reference<css::form::binding::XListEntryListener>&)
- throw( css::lang::NullPointerException,
- css::uno::RuntimeException, std::exception ) override;
+ virtual void SAL_CALL removeListEntryListener( const css::uno::Reference<css::form::binding::XListEntryListener>&) override;
// XValidator:
virtual sal_Bool SAL_CALL isValid(
- const css::uno::Any& )
- throw( css::uno::RuntimeException, std::exception ) override;
+ const css::uno::Any& ) override;
virtual OUString SAL_CALL explainInvalid(
- const css::uno::Any& )
- throw( css::uno::RuntimeException, std::exception ) override;
+ const css::uno::Any& ) override;
virtual void SAL_CALL addValidityConstraintListener(
- const css::uno::Reference<css::form::validation::XValidityConstraintListener>& xListener )
- throw( css::lang::NullPointerException,
- css::uno::RuntimeException, std::exception ) override;
+ const css::uno::Reference<css::form::validation::XValidityConstraintListener>& xListener ) override;
virtual void SAL_CALL removeValidityConstraintListener(
- const css::uno::Reference<css::form::validation::XValidityConstraintListener>& xListener )
- throw( css::lang::NullPointerException,
- css::uno::RuntimeException, std::exception ) override;
+ const css::uno::Reference<css::form::validation::XValidityConstraintListener>& xListener ) override;
// XModifyBroadcaster & friends:
@@ -389,12 +367,10 @@ public:
public:
virtual void SAL_CALL addModifyListener(
- const css::uno::Reference<css::util::XModifyListener>& xListener )
- throw( css::uno::RuntimeException, std::exception ) override;
+ const css::uno::Reference<css::util::XModifyListener>& xListener ) override;
virtual void SAL_CALL removeModifyListener(
- const css::uno::Reference<css::util::XModifyListener>& xListener )
- throw( css::uno::RuntimeException, std::exception ) override;
+ const css::uno::Reference<css::util::XModifyListener>& xListener ) override;
// XNamed:
@@ -403,11 +379,9 @@ public:
public:
- virtual OUString SAL_CALL getName()
- throw( css::uno::RuntimeException, std::exception ) override;
+ virtual OUString SAL_CALL getName() override;
- virtual void SAL_CALL setName( const OUString& )
- throw( css::uno::RuntimeException, std::exception ) override;
+ virtual void SAL_CALL setName( const OUString& ) override;
// xml::dom::event::XEventListener
@@ -415,22 +389,19 @@ public:
virtual void SAL_CALL handleEvent(
- const css::uno::Reference<css::xml::dom::events::XEvent>& xEvent )
- throw( css::uno::RuntimeException, std::exception ) override;
+ const css::uno::Reference<css::xml::dom::events::XEvent>& xEvent ) override;
// XUnoTunnel
- virtual sal_Int64 SAL_CALL getSomething( const css::uno::Sequence<sal_Int8>& )
- throw( css::uno::RuntimeException, std::exception ) override;
+ virtual sal_Int64 SAL_CALL getSomething( const css::uno::Sequence<sal_Int8>& ) override;
// XCloneable
- virtual css::uno::Reference<css::util::XCloneable> SAL_CALL createClone()
- throw( css::uno::RuntimeException, std::exception ) override;
+ virtual css::uno::Reference<css::util::XCloneable> SAL_CALL createClone() override;
};