diff options
author | Noel Grandin <noel@peralex.com> | 2012-05-09 14:24:47 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-05-14 19:49:15 +0200 |
commit | 60473b5ecaa4aceef876b54c2134c4da294217e5 (patch) | |
tree | e31b15e3f44cc0d5d735804a738305c753dfb8b5 /sw/inc/tblafmt.hxx | |
parent | b16ce6e60ffcfea13f025b2cee0011be76f42023 (diff) |
Convert SV_DECL_PTRARR_DEL(_SwTableAutoFmtTbl) to boost::ptr_vector
Change-Id: I1c92f9d77723979a9d16e9114282dec8d3566de6
Diffstat (limited to 'sw/inc/tblafmt.hxx')
-rw-r--r-- | sw/inc/tblafmt.hxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sw/inc/tblafmt.hxx b/sw/inc/tblafmt.hxx index 5ea37b523c96..a185c0fc8914 100644 --- a/sw/inc/tblafmt.hxx +++ b/sw/inc/tblafmt.hxx @@ -305,8 +305,7 @@ public: sal_Bool Save( SvStream& rStream, sal_uInt16 fileVersion ) const; }; -typedef SwTableAutoFmt* SwTableAutoFmtPtr ; -SV_DECL_PTRARR_DEL( _SwTableAutoFmtTbl, SwTableAutoFmtPtr, 1 ) +typedef boost::ptr_vector<SwTableAutoFmt> _SwTableAutoFmtTbl; class SW_DLLPUBLIC SwTableAutoFmtTbl : public _SwTableAutoFmtTbl { |