From 98eb91a1b99ce9c5ff43b49a9a7789ee8b1c8cc5 Mon Sep 17 00:00:00 2001 From: Tomaž Vajngerl Date: Thu, 8 Mar 2018 15:45:48 +0900 Subject: remove whitespace MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I2ae5c344da3f523072754340e78288fbb29c6348 Reviewed-on: https://gerrit.libreoffice.org/51067 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl --- svtools/source/graphic/graphic.cxx | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'svtools/source/graphic/graphic.cxx') diff --git a/svtools/source/graphic/graphic.cxx b/svtools/source/graphic/graphic.cxx index 4c39a09f2203..c2969d3cdf67 100644 --- a/svtools/source/graphic/graphic.cxx +++ b/svtools/source/graphic/graphic.cxx @@ -47,7 +47,6 @@ void Graphic::init( const ::Graphic& rGraphic ) unographic::GraphicDescriptor::init(maGraphic); } - uno::Any SAL_CALL Graphic::queryAggregation( const uno::Type& rType ) { uno::Any aAny; @@ -63,7 +62,6 @@ uno::Any SAL_CALL Graphic::queryAggregation( const uno::Type& rType ) return aAny; } - uno::Any SAL_CALL Graphic::queryInterface( const uno::Type & rType ) { css::uno::Any aReturn = ::unographic::GraphicDescriptor::queryInterface( rType ); @@ -72,14 +70,12 @@ uno::Any SAL_CALL Graphic::queryInterface( const uno::Type & rType ) return aReturn; } - void SAL_CALL Graphic::acquire() throw() { unographic::GraphicDescriptor::acquire(); } - void SAL_CALL Graphic::release() throw() { unographic::GraphicDescriptor::release(); @@ -121,13 +117,11 @@ uno::Sequence< uno::Type > SAL_CALL Graphic::getTypes() return aRet; } - uno::Sequence< sal_Int8 > SAL_CALL Graphic::getImplementationId() { return css::uno::Sequence(); } - sal_Int8 SAL_CALL Graphic::getType() { sal_Int8 cRet = graphic::GraphicType::EMPTY; @@ -146,7 +140,6 @@ sal_Int8 SAL_CALL Graphic::getType() return cRet; } - // XBitmap awt::Size SAL_CALL Graphic::getSize() @@ -161,7 +154,6 @@ awt::Size SAL_CALL Graphic::getSize() return awt::Size(aVclSize.Width(), aVclSize.Height()); } - uno::Sequence SAL_CALL Graphic::getDIB() { SolarMutexGuard aGuard; @@ -179,7 +171,6 @@ uno::Sequence SAL_CALL Graphic::getDIB() } } - uno::Sequence SAL_CALL Graphic::getMaskDIB() { SolarMutexGuard aGuard; @@ -197,7 +188,6 @@ uno::Sequence SAL_CALL Graphic::getMaskDIB() } } - const ::Graphic* Graphic::getImplementation( const uno::Reference< uno::XInterface >& rxIFace ) throw() { @@ -205,7 +195,6 @@ const ::Graphic* Graphic::getImplementation( const uno::Reference< uno::XInterfa return( xTunnel.is() ? reinterpret_cast< ::Graphic* >( xTunnel->getSomething( ::Graphic::getUnoTunnelId() ) ) : nullptr ); } - sal_Int64 SAL_CALL Graphic::getSomething( const uno::Sequence< sal_Int8 >& rId ) { return( ( rId.getLength() == 16 && 0 == memcmp( ::Graphic::getUnoTunnelId().getConstArray(), rId.getConstArray(), 16 ) ) ? -- cgit