diff options
author | Nigel Hawkins <n.hawkins@gmx.com> | 2011-07-13 14:46:39 +0100 |
---|---|---|
committer | Nigel Hawkins <n.hawkins@gmx.com> | 2011-07-13 15:57:23 +0100 |
commit | 7126d7b96ce76d46f95c7566b198870deff47498 (patch) | |
tree | 6cdbacc5ad46c4cf3579c4e3e8b8eb5acf5e00c1 /sw/inc | |
parent | 2643f2a06d3d71dbb5572532c29018bf66dbe7e6 (diff) |
Replace SvUShorts with vector in ftnidx.[ch]xx
LGPLv3+/MPL
Diffstat (limited to 'sw/inc')
-rw-r--r-- | sw/inc/ftnidx.hxx | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/sw/inc/ftnidx.hxx b/sw/inc/ftnidx.hxx index e2d6fcfd1138..d3ae3c8ca764 100644 --- a/sw/inc/ftnidx.hxx +++ b/sw/inc/ftnidx.hxx @@ -28,9 +28,8 @@ #ifndef _FTNIDX_HXX #define _FTNIDX_HXX - -#define _SVSTDARR_USHORTS #include <svl/svstdarr.hxx> +#include <vector> class SwTxtFtn; class SwNodeIndex; @@ -60,12 +59,10 @@ public: class SwUpdFtnEndNtAtEnd { SvPtrarr aFtnSects, aEndSects; - SvUShorts aFtnNums, aEndNums; + std::vector<sal_uInt16> aFtnNums, aEndNums; public: - SwUpdFtnEndNtAtEnd() : aFtnSects( 0, 4 ), aEndSects( 0, 4 ), - aFtnNums( 0, 4 ), aEndNums( 0, 4 ) - {} + SwUpdFtnEndNtAtEnd() : aFtnSects( 0, 4 ), aEndSects( 0, 4 ) {} static const SwSectionNode* FindSectNdWithEndAttr( const SwTxtFtn& rTxtFtn ); |