summaryrefslogtreecommitdiffstats
path: root/include/oox/dump/oledumper.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/oox/dump/oledumper.hxx')
-rw-r--r--include/oox/dump/oledumper.hxx10
1 files changed, 4 insertions, 6 deletions
diff --git a/include/oox/dump/oledumper.hxx b/include/oox/dump/oledumper.hxx
index bab5eb4a077f..f3cdf0c0ca87 100644
--- a/include/oox/dump/oledumper.hxx
+++ b/include/oox/dump/oledumper.hxx
@@ -366,10 +366,10 @@ private:
explicit StreamProperty( const String& rItemName, sal_uInt16 nData ) :
maItemName( rItemName ), mnData( nData ) {}
};
- typedef ::std::vector< StreamProperty > StreamPropertyVector;
LargePropertyVector maLargeProps;
- StreamPropertyVector maStreamProps;
+ std::vector< StreamProperty >
+ maStreamProps;
NameListRef mxPropNames;
sal_Int64 mnPropertiesStart;
sal_Int64 mnPropertiesEnd;
@@ -548,13 +548,11 @@ struct VbaFormSiteInfo
VbaFormSiteInfo() : mnId( 0 ), mnLength( 0 ), mbInStream( false ) {}
};
-typedef ::std::vector< VbaFormSiteInfo > VbaFormSiteInfoVector;
-
struct VbaFormSharedData
{
- OUStringVector maClassInfoProgIds;
- VbaFormSiteInfoVector maSiteInfos;
+ OUStringVector maClassInfoProgIds;
+ std::vector< VbaFormSiteInfo > maSiteInfos;
};