diff options
author | Noel Grandin <noel@peralex.com> | 2012-04-25 11:55:02 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-04-25 12:35:32 +0200 |
commit | 40bd5dab1d8c35a722f4ce2337e6ae1fae3cddc1 (patch) | |
tree | 17cadad1f66f1d3d415dbee06789535c24e5a0e4 /sw/inc | |
parent | d93db90e19923b524d4c6f9cdfe0544f1dc46d22 (diff) |
Convert SV_DECL_PTRARR(SwChartBoxes) 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 25d5d8e87b87..e177d1a5a6ab 100644 --- a/sw/inc/tblsel.hxx +++ b/sw/inc/tblsel.hxx @@ -130,7 +130,7 @@ sal_Bool GetAutoSumSel( const SwCrsrShell&, SwCellFrms& ); sal_Bool HasProtectedCells( const SwSelBoxes& rBoxes ); // Check if selection is balanced. -SV_DECL_PTRARR( SwChartBoxes, SwTableBoxPtr, 16) +class SwChartBoxes : public std::vector<SwTableBoxPtr> {}; class SwChartLines : public boost::ptr_vector<SwChartBoxes> {}; sal_Bool ChkChartSel( const SwNode& rSttNd, const SwNode& rEndNd, |