diff options
author | Rüdiger Timm <rt@openoffice.org> | 2006-01-13 15:59:11 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2006-01-13 15:59:11 +0000 |
commit | a242613ab4fbac2a66b819c242cd5e41f971b2ff (patch) | |
tree | 733f9cbbf877eb5219e32eeb577f2aef203dbafb /sc | |
parent | 058077b338bab47eb199d9fb8dc3d39a01068623 (diff) |
INTEGRATION: CWS dr43 (1.17.24); FILE MERGED
2005/10/25 10:22:42 dr 1.17.24.1: additions for form controls
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/inc/biffdump.hxx | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/sc/source/filter/inc/biffdump.hxx b/sc/source/filter/inc/biffdump.hxx index ff5ea48560be..2427a9c35172 100644 --- a/sc/source/filter/inc/biffdump.hxx +++ b/sc/source/filter/inc/biffdump.hxx @@ -4,9 +4,9 @@ * * $RCSfile: biffdump.hxx,v $ * - * $Revision: 1.17 $ + * $Revision: 1.18 $ * - * last change: $Author: hr $ $Date: 2005-09-28 11:55:25 $ + * last change: $Author: rt $ $Date: 2006-01-13 16:59:11 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -32,6 +32,7 @@ * MA 02111-1307 USA * ************************************************************************/ + #ifndef SC_BIFFDUMP_HXX #define SC_BIFFDUMP_HXX @@ -46,6 +47,9 @@ #if EXC_INCL_DUMPER +#include <vector> +#include <map> + #ifndef _STRING_HXX #include <tools/string.hxx> #endif @@ -147,8 +151,9 @@ public: class Biff8RecDumper : public XclImpRoot { protected: - typedef ScfRef< ByteString > ByteStringRef; - typedef ::std::vector< ByteStringRef > ByteStringVec; + typedef ScfRef< ByteString > ByteStringRef; + typedef ::std::vector< ByteStringRef > ByteStringVec; + typedef ::std::map< sal_uInt32, sal_uInt32 > StrmPortionMap; static const sal_Char* pLevelPreString; @@ -162,6 +167,7 @@ protected: SvFileStream* pDumpStream; XclImpStream* pIn; + StrmPortionMap maCtlsPosMap; /// Control data in 'Ctls' stream. ByteStringVec maNames; /// Defined names. UINT32 nMaxBodyLines; |