diff options
Diffstat (limited to 'oox/source/ole/axbinaryreader.cxx')
-rw-r--r-- | oox/source/ole/axbinaryreader.cxx | 12 |
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 |