From a10b95bcc97896f7f8d8643593a5d759f41ac82d Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Thu, 19 Jan 2017 18:00:00 +0100 Subject: New loplugin:dynexcspec: Add @throws documentation, comphelper Change-Id: I115c5c34cf97858d9fdd96432cb57bde6d4537cb --- comphelper/source/property/propagg.cxx | 2 ++ comphelper/source/property/propertysetinfo.cxx | 1 + 2 files changed, 3 insertions(+) (limited to 'comphelper/source/property') diff --git a/comphelper/source/property/propagg.cxx b/comphelper/source/property/propagg.cxx index e68ad495314b..e8383c362c80 100644 --- a/comphelper/source/property/propagg.cxx +++ b/comphelper/source/property/propagg.cxx @@ -272,6 +272,8 @@ namespace internal bool isResponsibleFor( sal_Int32 _nHandle ); /// actually forwards a property value to the aggregate + /// + /// @throws Exception void doForward( sal_Int32 _nHandle, const Any& _rValue ) throw ( Exception ); sal_Int32 getCurrentlyForwardedProperty( ) const { return m_nCurrentlyForwarding; } diff --git a/comphelper/source/property/propertysetinfo.cxx b/comphelper/source/property/propertysetinfo.cxx index 93293362a8ba..9125d694a71d 100644 --- a/comphelper/source/property/propertysetinfo.cxx +++ b/comphelper/source/property/propertysetinfo.cxx @@ -44,6 +44,7 @@ public: const PropertyMap& getPropertyMap() const throw() { return maPropertyMap;} + /// @throws UnknownPropertyException Property getPropertyByName( const OUString& aName ) throw( UnknownPropertyException ); bool hasPropertyByName( const OUString& aName ) throw(); -- cgit