diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-10-10 20:11:33 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-10-11 09:21:41 +0100 |
commit | e70cec4a4264987720f9b42a72a13fa1f84fde6d (patch) | |
tree | 3ddadca6b2db543df308d8a0ad9b11d7ed99f743 /oox | |
parent | ef8b17930977c5a8141386839e9d4c1dfe3e2d65 (diff) |
callcatcher: update unused code list
Change-Id: Ie903e37cccf98f1b91c05e87f067f2986b746590
Diffstat (limited to 'oox')
-rw-r--r-- | oox/inc/oox/ole/axbinaryreader.hxx | 6 | ||||
-rw-r--r-- | oox/source/ole/axbinaryreader.cxx | 9 |
2 files changed, 0 insertions, 15 deletions
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() ) |