From a238b1f8d304bf1e2ffb357937f3ec888ee8ac89 Mon Sep 17 00:00:00 2001 From: Chris Sherlock Date: Tue, 9 Feb 2016 18:16:42 +1100 Subject: Remove excess newlines A ridiculously fast way of doing this is: for i in $(pcregrep -l -M -r --include='.*[hc]xx$' \ --exclude-dir=workdir --exclude-dir=instdir '^ {3,}' .) do perl -0777 -i -pe 's/^ {3,}/ /gm' $i done Change-Id: Iebb93eccbee9e4fc5c4380474ba595858a27ac2c Reviewed-on: https://gerrit.libreoffice.org/22224 Tested-by: Jenkins Reviewed-by: Chris Sherlock --- svx/source/accessibility/AccessibleShape.cxx | 35 ---------------------------- 1 file changed, 35 deletions(-) (limited to 'svx/source/accessibility/AccessibleShape.cxx') diff --git a/svx/source/accessibility/AccessibleShape.cxx b/svx/source/accessibility/AccessibleShape.cxx index a352e2b88e68..fd4a9bff049b 100644 --- a/svx/source/accessibility/AccessibleShape.cxx +++ b/svx/source/accessibility/AccessibleShape.cxx @@ -192,8 +192,6 @@ void AccessibleShape::Init() } - - void AccessibleShape::UpdateStates() { ::utl::AccessibleStateSetHelper* pStateSet = @@ -269,8 +267,6 @@ bool AccessibleShape::SetState (sal_Int16 aState) } - - bool AccessibleShape::ResetState (sal_Int16 aState) { bool bStateHasChanged = false; @@ -290,8 +286,6 @@ bool AccessibleShape::ResetState (sal_Int16 aState) } - - bool AccessibleShape::GetState (sal_Int16 aState) { if (aState == AccessibleStateType::FOCUSED && mpText != nullptr) @@ -347,8 +341,6 @@ sal_Int32 SAL_CALL } - - /** Forward the request to the shape. Return the requested shape or throw an exception for a wrong index. */ @@ -540,8 +532,6 @@ uno::Reference SAL_CALL } - - awt::Rectangle SAL_CALL AccessibleShape::getBounds() throw (css::uno::RuntimeException, std::exception) { @@ -655,8 +645,6 @@ awt::Rectangle SAL_CALL AccessibleShape::getBounds() } - - awt::Point SAL_CALL AccessibleShape::getLocation() throw (css::uno::RuntimeException, std::exception) { @@ -666,8 +654,6 @@ awt::Point SAL_CALL AccessibleShape::getLocation() } - - awt::Point SAL_CALL AccessibleShape::getLocationOnScreen() throw (css::uno::RuntimeException, std::exception) { @@ -691,8 +677,6 @@ awt::Point SAL_CALL AccessibleShape::getLocationOnScreen() } - - awt::Size SAL_CALL AccessibleShape::getSize() throw (uno::RuntimeException, std::exception) { @@ -702,8 +686,6 @@ awt::Size SAL_CALL AccessibleShape::getSize() } - - sal_Int32 SAL_CALL AccessibleShape::getForeground() throw (css::uno::RuntimeException, std::exception) { @@ -728,8 +710,6 @@ sal_Int32 SAL_CALL AccessibleShape::getForeground() } - - sal_Int32 SAL_CALL AccessibleShape::getBackground() throw (css::uno::RuntimeException, std::exception) { @@ -787,8 +767,6 @@ void SAL_CALL AccessibleShape::addAccessibleEventListener ( } - - void SAL_CALL AccessibleShape::removeAccessibleEventListener ( const Reference& rxListener) throw (uno::RuntimeException, std::exception) @@ -820,8 +798,6 @@ css::uno::Any SAL_CALL } - - void SAL_CALL AccessibleShape::acquire() throw () @@ -830,8 +806,6 @@ void SAL_CALL } - - void SAL_CALL AccessibleShape::release() throw () @@ -962,8 +936,6 @@ OUString SAL_CALL } - - uno::Sequence SAL_CALL AccessibleShape::getSupportedServiceNames() throw (css::uno::RuntimeException, std::exception) @@ -1250,11 +1222,6 @@ OUString } - - - - - // protected void AccessibleShape::disposing() { @@ -1314,8 +1281,6 @@ sal_Int32 SAL_CALL } - - void AccessibleShape::UpdateNameAndDescription() { // Ignore missing title, name, or description. There are fallbacks for -- cgit