summaryrefslogtreecommitdiff
path: root/oox
diff options
context:
space:
mode:
Diffstat (limited to 'oox')
-rw-r--r--oox/inc/oox/ole/axbinaryreader.hxx6
-rw-r--r--oox/source/ole/axbinaryreader.cxx9
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() )