summaryrefslogtreecommitdiff
path: root/sc/source/filter/inc/xistream.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/filter/inc/xistream.hxx')
-rw-r--r--sc/source/filter/inc/xistream.hxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/sc/source/filter/inc/xistream.hxx b/sc/source/filter/inc/xistream.hxx
index c752f00f8531..a7e33a111ea9 100644
--- a/sc/source/filter/inc/xistream.hxx
+++ b/sc/source/filter/inc/xistream.hxx
@@ -515,15 +515,14 @@ private:
sal_uInt16 ReadRawData( void* pData, sal_uInt16 nBytes );
private:
- typedef ::std::vector< XclImpStreamPos > XclImpStreamPosStack;
-
SvStream& mrStrm; /// Reference to the system input stream.
const XclImpRoot& mrRoot; /// Filter root data.
XclImpDecrypterRef mxDecrypter; /// Provides methods to decrypt data.
XclImpStreamPos maFirstRec; /// Start position of current record.
- XclImpStreamPosStack maPosStack; /// Stack for record positions.
+ std::vector< XclImpStreamPos >
+ maPosStack; /// Stack for record positions.
XclImpStreamPos maGlobPos; /// User defined position elsewhere in stream.
sal_uInt16 mnGlobRecId; /// Record ID for user defined position.
/td>[API CHANGE] Remove deprecated com.sun.star.uno.Union classStephan Bergmann 2015-06-11java:regulatize the order of 'final' and public/privateNoel Grandin