[Libreoffice-commits] core.git: svtools/source

Tomaž Vajngerl tomaz.vajngerl at collabora.co.uk
Sun Mar 11 04:04:13 UTC 2018


 svtools/source/graphic/graphic.cxx |   11 -----------
 svtools/source/graphic/graphic.hxx |    1 -
 2 files changed, 12 deletions(-)

New commits:
commit 98eb91a1b99ce9c5ff43b49a9a7789ee8b1c8cc5
Author: Tomaž Vajngerl <tomaz.vajngerl at collabora.co.uk>
Date:   Thu Mar 8 15:45:48 2018 +0900

    remove whitespace
    
    Change-Id: I2ae5c344da3f523072754340e78288fbb29c6348
    Reviewed-on: https://gerrit.libreoffice.org/51067
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Tomaž Vajngerl <quikee at gmail.com>

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_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_Int8> SAL_CALL Graphic::getDIB()
 {
     SolarMutexGuard aGuard;
@@ -179,7 +171,6 @@ uno::Sequence<sal_Int8> SAL_CALL Graphic::getDIB()
     }
 }
 
-
 uno::Sequence<sal_Int8> SAL_CALL Graphic::getMaskDIB()
 {
     SolarMutexGuard aGuard;
@@ -197,7 +188,6 @@ uno::Sequence<sal_Int8> 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 ) ) ?
diff --git a/svtools/source/graphic/graphic.hxx b/svtools/source/graphic/graphic.hxx
index 285cb5f10051..3f550fb733e1 100644
--- a/svtools/source/graphic/graphic.hxx
+++ b/svtools/source/graphic/graphic.hxx
@@ -39,7 +39,6 @@ class Graphic : public css::graphic::XGraphic,
                 public ::unographic::GraphicTransformer
 {
 public:
-
     Graphic();
     virtual ~Graphic() throw() override;
 


More information about the Libreoffice-commits mailing list