From 0439af27e1f37b19d4409f34f974d6ade49f99bf Mon Sep 17 00:00:00 2001 From: Alexander Bergmann Date: Thu, 26 Jan 2012 16:00:09 +0100 Subject: Code cleanup: ( () ) replaced by (()) --- framework/source/fwi/uielement/constitemcontainer.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'framework/source/fwi') diff --git a/framework/source/fwi/uielement/constitemcontainer.cxx b/framework/source/fwi/uielement/constitemcontainer.cxx index ab61954b90da..5f7cbed7ac73 100644 --- a/framework/source/fwi/uielement/constitemcontainer.cxx +++ b/framework/source/fwi/uielement/constitemcontainer.cxx @@ -56,7 +56,7 @@ namespace framework */ extern "C" { -static int SAL_CALL compare_OUString_Property_Impl( const void *arg1, const void *arg2 ) SAL_THROW( () ) +static int SAL_CALL compare_OUString_Property_Impl( const void *arg1, const void *arg2 ) SAL_THROW(()) { return ((::rtl::OUString *)arg1)->compareTo( ((Property *)arg2)->Name ); } @@ -68,7 +68,7 @@ class OPropertySetHelperInfo_Impl Sequence < Property > aInfos; public: - OPropertySetHelperInfo_Impl( IPropertyArrayHelper & rHelper_ ) SAL_THROW( () ); + OPropertySetHelperInfo_Impl( IPropertyArrayHelper & rHelper_ ) SAL_THROW(()); // XPropertySetInfo-Methoden virtual Sequence< Property > SAL_CALL getProperties(void) throw(::com::sun::star::uno::RuntimeException); @@ -82,7 +82,7 @@ public: */ OPropertySetHelperInfo_Impl::OPropertySetHelperInfo_Impl( IPropertyArrayHelper & rHelper_ ) - SAL_THROW( () ) + SAL_THROW(()) :aInfos( rHelper_.getProperties() ) { } @@ -442,7 +442,7 @@ const com::sun::star::uno::Sequence< com::sun::star::beans::Property > ConstItem } Reference < XPropertySetInfo > ConstItemContainer::createPropertySetInfo( - IPropertyArrayHelper & rProperties ) SAL_THROW( () ) + IPropertyArrayHelper & rProperties ) SAL_THROW(()) { return static_cast< XPropertySetInfo * >( new OPropertySetHelperInfo_Impl( rProperties ) ); } -- cgit