diff options
author | Bjoern Michaelsen <bjoern.michaelsen@canonical.com> | 2015-11-28 03:09:26 +0100 |
---|---|---|
committer | Bjoern Michaelsen <bjoern.michaelsen@canonical.com> | 2015-11-29 10:36:51 +0100 |
commit | 3f0d445874f4d5c057dd149dfc086d31efaf2669 (patch) | |
tree | 9ae9a59fddf3b849326340b42d2705dd05e14b7d | |
parent | 800528dfa0b74e12849ef9ff48762a6fe3eafa44 (diff) |
simplify
Change-Id: If065b30b93c603032f47a3e470f4faadf92a4d09
-rw-r--r-- | sw/source/core/unocore/unostyle.cxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sw/source/core/unocore/unostyle.cxx b/sw/source/core/unocore/unostyle.cxx index 27bba507455d..f684a592658f 100644 --- a/sw/source/core/unocore/unostyle.cxx +++ b/sw/source/core/unocore/unostyle.cxx @@ -728,10 +728,8 @@ void SwXStyleFamily::removeByName(const OUString& rName) throw( container::NoSuc m_pBasePool->Remove(pBase); } -uno::Reference< beans::XPropertySetInfo > SAL_CALL SwXStyleFamily::getPropertySetInfo( ) throw (uno::RuntimeException, std::exception) -{ - return uno::Reference< beans::XPropertySetInfo >(); -} +uno::Reference<beans::XPropertySetInfo> SAL_CALL SwXStyleFamily::getPropertySetInfo( ) throw (uno::RuntimeException, std::exception) + { return {}; } void SAL_CALL SwXStyleFamily::setPropertyValue( const OUString&, const uno::Any& ) throw (beans::UnknownPropertyException, beans::PropertyVetoException, lang::IllegalArgumentException, lang::WrappedTargetException, uno::RuntimeException, std::exception) { SAL_WARN("sw.uno", "###unexpected!"); } |