diff options
author | Noel Grandin <noel@peralex.com> | 2012-04-19 14:12:05 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-04-25 12:35:31 +0200 |
commit | be5e4247e2a164bd1f2eacf9a33d6d73df16d0e3 (patch) | |
tree | 51d285f34f0f6521154391d5d6e9871334ff4ceb /sw/inc | |
parent | dd982d58dfe4f773a1cd5dbd8d376837316f0bfb (diff) |
Convert SV_DECL_PTRARR(_FndBox*) to std::vector
Diffstat (limited to 'sw/inc')
-rw-r--r-- | sw/inc/tblsel.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/inc/tblsel.hxx b/sw/inc/tblsel.hxx index 5725956df0a1..fc2d33db4f1f 100644 --- a/sw/inc/tblsel.hxx +++ b/sw/inc/tblsel.hxx @@ -193,7 +193,7 @@ void MakeSelUnions( SwSelUnions&, const SwLayoutFrm *pStart, class _FndBox; class _FndLine; -SV_DECL_PTRARR_DEL( _FndBoxes, _FndBox*, 10 ) +typedef std::vector<_FndBox*> _FndBoxes; SV_DECL_PTRARR_DEL( _FndLines, _FndLine*,10 ) class _FndBox |