summaryrefslogtreecommitdiffstats
path: root/sw/inc/ftnidx.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2012-06-22 17:55:56 +0200
committerMichael Stahl <mstahl@redhat.com>2012-06-25 20:13:20 +0200
commit1199f99b26034b6e84e6c59ab1eb288ac64e048e (patch)
treed873bfb7f4423524eaa0638d478c226f7fcbbd76 /sw/inc/ftnidx.hxx
parentConvert local var from Svptrarr to std::vector (diff)
downloadcore-1199f99b26034b6e84e6c59ab1eb288ac64e048e.tar.gz
core-1199f99b26034b6e84e6c59ab1eb288ac64e048e.zip
Convert fields in class SwUpdFtnEndNtAtEnd from Svptrarr to std::vector
Change-Id: I67631707788ec273b994d59db6e08aabb6b62991
Diffstat (limited to 'sw/inc/ftnidx.hxx')
-rw-r--r--sw/inc/ftnidx.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/inc/ftnidx.hxx b/sw/inc/ftnidx.hxx
index 055d6d54921d..40b969fb4c55 100644
--- a/sw/inc/ftnidx.hxx
+++ b/sw/inc/ftnidx.hxx
@@ -58,11 +58,11 @@ public:
class SwUpdFtnEndNtAtEnd
{
- SvPtrarr aFtnSects, aEndSects;
+ std::vector<const SwSectionNode*> aFtnSects, aEndSects;
std::vector<sal_uInt16> aFtnNums, aEndNums;
public:
- SwUpdFtnEndNtAtEnd() : aFtnSects( 0 ), aEndSects( 0 ) {}
+ SwUpdFtnEndNtAtEnd() : aFtnSects(), aEndSects() {}
static const SwSectionNode* FindSectNdWithEndAttr(
const SwTxtFtn& rTxtFtn );