From e70cec4a4264987720f9b42a72a13fa1f84fde6d Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Wed, 10 Oct 2012 20:11:33 +0100 Subject: callcatcher: update unused code list Change-Id: Ie903e37cccf98f1b91c05e87f067f2986b746590 --- oox/inc/oox/ole/axbinaryreader.hxx | 6 ------ oox/source/ole/axbinaryreader.cxx | 9 --------- 2 files changed, 15 deletions(-) (limited to 'oox') diff --git a/oox/inc/oox/ole/axbinaryreader.hxx b/oox/inc/oox/ole/axbinaryreader.hxx index d88ea806b3da..d63ccb133e4e 100644 --- a/oox/inc/oox/ole/axbinaryreader.hxx +++ b/oox/inc/oox/ole/axbinaryreader.hxx @@ -112,9 +112,6 @@ public: /** Reads the next string property from the stream, if the respective flag in the property mask is set. */ void readStringProperty( ::rtl::OUString& orValue ); - /** Reads a string array property from the stream, if the respective flag - in the property mask is set. */ - void readStringArrayProperty( AxStringArray& orArray ); /** Reads the next GUID property from the stream, if the respective flag in the property mask is set. The GUID will be enclosed in braces. */ void readGuidProperty( ::rtl::OUString& orGuid ); @@ -138,9 +135,6 @@ public: /** Skips the next string property in the stream, if the respective flag in the property mask is set. */ inline void skipStringProperty() { readStringProperty( maDummyString ); } - /** Skips the next string array property in the stream, if the respective - flag in the property mask is set. */ - inline void skipStringArrayProperty() { readStringArrayProperty( maDummyStringArray ); } /** Skips the next GUID property in the stream, if the respective flag in the property mask is set. */ inline void skipGuidProperty() { readGuidProperty( maDummyString ); } diff --git a/oox/source/ole/axbinaryreader.cxx b/oox/source/ole/axbinaryreader.cxx index 70ba36312f59..9b660c0f2c08 100644 --- a/oox/source/ole/axbinaryreader.cxx +++ b/oox/source/ole/axbinaryreader.cxx @@ -218,15 +218,6 @@ void AxBinaryPropertyReader::readStringProperty( OUString& orValue ) } } -void AxBinaryPropertyReader::readStringArrayProperty( AxStringArray& orArray ) -{ - if( startNextProperty() ) - { - sal_uInt32 nSize = maInStrm.readAligned< sal_uInt32 >(); - maLargeProps.push_back( ComplexPropVector::value_type( new StringArrayProperty( orArray, nSize ) ) ); - } -} - void AxBinaryPropertyReader::readGuidProperty( ::rtl::OUString& orGuid ) { if( startNextProperty() ) -- cgit