summaryrefslogtreecommitdiff
path: root/include/svl/itemprop.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/svl/itemprop.hxx')
-rw-r--r--include/svl/itemprop.hxx45
1 files changed, 13 insertions, 32 deletions
diff --git a/include/svl/itemprop.hxx b/include/svl/itemprop.hxx
index 9bc67a7df466..8e1c44afa456 100644
--- a/include/svl/itemprop.hxx
+++ b/include/svl/itemprop.hxx
@@ -97,8 +97,7 @@ public:
const SfxItemPropertySimpleEntry* getByName( const OUString &rName ) const;
css::uno::Sequence< css::beans::Property > getProperties() const;
/// @throws css::beans::UnknownPropertyException
- css::beans::Property getPropertyByName( const OUString & rName ) const
- throw( css::beans::UnknownPropertyException );
+ css::beans::Property getPropertyByName( const OUString & rName ) const;
bool hasPropertyByName( const OUString& rName ) const;
void mergeProperties( const css::uno::Sequence< css::beans::Property >& rPropSeq );
@@ -120,43 +119,32 @@ public:
/// @throws css::uno::RuntimeException
void getPropertyValue( const SfxItemPropertySimpleEntry& rEntry,
const SfxItemSet& rSet,
- css::uno::Any& rAny) const
- throw(css::uno::RuntimeException);
+ css::uno::Any& rAny) const;
/// @throws css::uno::RuntimeException
/// @throws css::beans::UnknownPropertyException
void getPropertyValue( const OUString &rName,
const SfxItemSet& rSet,
- css::uno::Any& rAny) const
- throw(css::uno::RuntimeException,
- css::beans::UnknownPropertyException);
+ css::uno::Any& rAny) const;
/// @throws css::uno::RuntimeException
/// @throws css::beans::UnknownPropertyException
css::uno::Any
getPropertyValue( const OUString &rName,
- const SfxItemSet& rSet ) const
- throw(css::uno::RuntimeException,
- css::beans::UnknownPropertyException);
+ const SfxItemSet& rSet ) const;
/// @throws css::uno::RuntimeException
/// @throws css::lang::IllegalArgumentException
void setPropertyValue( const SfxItemPropertySimpleEntry& rEntry,
const css::uno::Any& aVal,
- SfxItemSet& rSet ) const
- throw(css::uno::RuntimeException,
- css::lang::IllegalArgumentException);
+ SfxItemSet& rSet ) const;
/// @throws css::uno::RuntimeException
/// @throws css::lang::IllegalArgumentException
/// @throws css::beans::UnknownPropertyException
void setPropertyValue( const OUString& rPropertyName,
const css::uno::Any& aVal,
- SfxItemSet& rSet ) const
- throw(css::uno::RuntimeException,
- css::lang::IllegalArgumentException,
- css::beans::UnknownPropertyException);
+ SfxItemSet& rSet ) const;
/// @throws css::beans::UnknownPropertyException
css::beans::PropertyState
- getPropertyState(const OUString& rName, const SfxItemSet& rSet)const
- throw(css::beans::UnknownPropertyException);
+ getPropertyState(const OUString& rName, const SfxItemSet& rSet)const;
css::beans::PropertyState
getPropertyState(const SfxItemPropertySimpleEntry& rEntry, const SfxItemSet& rSet) const
throw();
@@ -177,17 +165,13 @@ public:
virtual ~SfxItemPropertySetInfo() override;
virtual css::uno::Sequence< css::beans::Property > SAL_CALL
- getProperties( )
- throw(css::uno::RuntimeException, std::exception) override;
+ getProperties( ) override;
virtual css::beans::Property SAL_CALL
- getPropertyByName( const OUString& aName )
- throw(css::beans::UnknownPropertyException,
- css::uno::RuntimeException, std::exception) override;
+ getPropertyByName( const OUString& aName ) override;
virtual sal_Bool SAL_CALL
- hasPropertyByName( const OUString& Name )
- throw(css::uno::RuntimeException, std::exception) override;
+ hasPropertyByName( const OUString& Name ) override;
};
@@ -201,16 +185,13 @@ public:
virtual ~SfxExtItemPropertySetInfo() override;
virtual css::uno::Sequence< css::beans::Property > SAL_CALL
- getProperties( )
- throw(css::uno::RuntimeException, std::exception) override;
+ getProperties( ) override;
virtual css::beans::Property SAL_CALL
- getPropertyByName( const OUString& aName )
- throw(css::beans::UnknownPropertyException, css::uno::RuntimeException, std::exception) override;
+ getPropertyByName( const OUString& aName ) override;
virtual sal_Bool SAL_CALL
- hasPropertyByName( const OUString& Name )
- throw(css::uno::RuntimeException, std::exception) override;
+ hasPropertyByName( const OUString& Name ) override;
};
#endif