summaryrefslogtreecommitdiff
path: root/oox/source/ole/axbinaryreader.cxx
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@collabora.co.uk>2014-06-25 05:22:57 +0200
committerMarkus Mohrhard <markus.mohrhard@collabora.co.uk>2014-06-25 05:41:11 +0200
commitca362d6348e4d0a29317492b3c8ef9637a656f4f (patch)
tree80e13761f3d287077dfb0620638fd0397087c9e4 /oox/source/ole/axbinaryreader.cxx
parent37e6631cc5d4147e9d0a4ebefbd0c9d2a8137d24 (diff)
remove whitespaces
Change-Id: Ie14ba3dcb97f20479a04538748ef2c1c9e6c5dac
Diffstat (limited to 'oox/source/ole/axbinaryreader.cxx')
-rw-r--r--oox/source/ole/axbinaryreader.cxx12
1 files changed, 0 insertions, 12 deletions
diff --git a/oox/source/ole/axbinaryreader.cxx b/oox/source/ole/axbinaryreader.cxx
index 16e65f5d1a73..9df00e7672a2 100644
--- a/oox/source/ole/axbinaryreader.cxx
+++ b/oox/source/ole/axbinaryreader.cxx
@@ -24,8 +24,6 @@
namespace oox {
namespace ole {
-
-
namespace {
const sal_uInt32 AX_STRING_SIZEMASK = 0x7FFFFFFF;
@@ -33,8 +31,6 @@ const sal_uInt32 AX_STRING_COMPRESSED = 0x80000000;
} // namespace
-
-
AxAlignedInputStream::AxAlignedInputStream( BinaryInputStream& rInStrm ) :
BinaryStreamBase( false ),
mpInStrm( &rInStrm ),
@@ -106,8 +102,6 @@ void AxAlignedInputStream::align( size_t nSize )
skip( static_cast< sal_Int32 >( (nSize - (mnStrmPos % nSize)) % nSize ) );
}
-
-
namespace {
bool lclReadString( AxAlignedInputStream& rInStrm, OUString& rValue, sal_uInt32 nSize, bool bArrayString )
@@ -127,8 +121,6 @@ bool lclReadString( AxAlignedInputStream& rInStrm, OUString& rValue, sal_uInt32
} // namespace
-
-
AxBinaryPropertyReader::ComplexProperty::~ComplexProperty()
{
}
@@ -175,8 +167,6 @@ bool AxBinaryPropertyReader::PictureProperty::readProperty( AxAlignedInputStream
return OleHelper::importStdPic( mrPicData, rInStrm, true );
}
-
-
AxBinaryPropertyReader::AxBinaryPropertyReader( BinaryInputStream& rInStrm, bool b64BitPropFlags ) :
maInStrm( rInStrm ),
mbValid( true )
@@ -285,8 +275,6 @@ bool AxBinaryPropertyReader::startNextProperty()
return ensureValid() && bHasProp;
}
-
-
} // namespace ole
} // namespace oox