From 5bd5baff3f2a55bc2d84e1e352a00dd6969394e3 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 23 Jun 2016 11:37:33 +0200 Subject: remove some more (void) style function definitions/declarations found with git grep -nP '^\s*void\s*\)' Change-Id: I1206031cf957cb6f957cae64ec5cae1280bda694 Reviewed-on: https://gerrit.libreoffice.org/26590 Tested-by: Jenkins Reviewed-by: Noel Grandin --- ucb/source/ucp/file/bc.cxx | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to 'ucb/source/ucp/file/bc.cxx') diff --git a/ucb/source/ucp/file/bc.cxx b/ucb/source/ucp/file/bc.cxx index f3e37a5e0623..d7b6db89c469 100644 --- a/ucb/source/ucp/file/bc.cxx +++ b/ucb/source/ucp/file/bc.cxx @@ -577,8 +577,7 @@ BaseContent::addProperty( void SAL_CALL -BaseContent::removeProperty( - const OUString& Name ) +BaseContent::removeProperty( const OUString& Name ) throw( beans::UnknownPropertyException, beans::NotRemoveableException, RuntimeException, std::exception) @@ -595,8 +594,7 @@ BaseContent::removeProperty( Sequence< ContentInfo > SAL_CALL -BaseContent::queryCreatableContentsInfo( - void ) +BaseContent::queryCreatableContentsInfo() throw( RuntimeException, std::exception ) { return m_pMyShell->queryCreatableContentsInfo(); @@ -604,8 +602,7 @@ BaseContent::queryCreatableContentsInfo( Reference< XContent > SAL_CALL -BaseContent::createNewContent( - const ContentInfo& Info ) +BaseContent::createNewContent( const ContentInfo& Info ) throw( RuntimeException, std::exception ) { // Check type. @@ -695,8 +692,7 @@ BaseContent::removePropertySetInfoChangeListener( Reference< XInterface > SAL_CALL -BaseContent::getParent( - void ) +BaseContent::getParent() throw( RuntimeException, std::exception ) { OUString ParentUnq = getParentName( m_aUncPath ); -- cgit