summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorTomaž Vajngerl <tomaz.vajngerl@collabora.co.uk>2018-03-08 15:45:48 +0900
committerTomaž Vajngerl <quikee@gmail.com>2018-03-11 05:03:53 +0100
commit98eb91a1b99ce9c5ff43b49a9a7789ee8b1c8cc5 (patch)
treeb54059875dc1fa7db4ebf95ccd3e6ca6f76e7027 /svtools
parent8874c4ae7696328556a8f5c0c475b2cac6aa533b (diff)
remove whitespace
Change-Id: I2ae5c344da3f523072754340e78288fbb29c6348 Reviewed-on: https://gerrit.libreoffice.org/51067 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/graphic/graphic.cxx11
-rw-r--r--svtools/source/graphic/graphic.hxx1
2 files changed, 0 insertions, 12 deletions
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;