diff options
author | Noel Grandin <noel@peralex.com> | 2012-06-25 16:09:52 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-07-04 23:23:20 +0200 |
commit | 485e097ba8cc55a49188ec239042a92b8c160104 (patch) | |
tree | 4a5d1b1a7237b0c5b23996edcf7a1a91d8e493e1 /sw/inc/expfld.hxx | |
parent | 6485258bc00de0bc1db9a0b146437a08c93970aa (diff) |
Convert Svptrarr to std::set<const SwTxtFld*>
Change-Id: I71bfd2075c7dd7a97fd5553c8e55e614d6be4cf3
Diffstat (limited to 'sw/inc/expfld.hxx')
-rw-r--r-- | sw/inc/expfld.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/inc/expfld.hxx b/sw/inc/expfld.hxx index 0b908df55bd2..c15e0a274bb8 100644 --- a/sw/inc/expfld.hxx +++ b/sw/inc/expfld.hxx @@ -28,10 +28,10 @@ #ifndef SW_EXPFLD_HXX #define SW_EXPFLD_HXX -#include <svl/svarray.hxx> #include "swdllapi.h" #include <fldbas.hxx> #include <cellfml.hxx> +#include <set> class SfxPoolItem; class SwTxtNode; @@ -356,9 +356,9 @@ public: void RemoveUnselectedFlds(); private: - SwEditShell* pSh; - _SetGetExpFlds* pSrtLst; - SvPtrarr aTmpLst; + SwEditShell* pSh; + _SetGetExpFlds* pSrtLst; + std::set<const SwTxtFld*> aTmpLst; }; // Implementation in tblcalc.cxx. |