diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2012-06-10 22:09:49 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-06-12 23:25:16 +0200 |
commit | c2fc98fa9e46cd18201d3940beb67d74630c8604 (patch) | |
tree | 22a8b46cffee1cb11345d8204f9afc4d6a3f7bab /cui | |
parent | 42d57f94fa3202e53f38bfcbef0683c8f0bc1a61 (diff) |
Convert SV_IMPL_PTRARR(SfxFilterPtrArr) to std::vector
Change-Id: I6b0fee0f5d736006938d3d6ab69745219bffa227
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/options/optinet2.cxx | 2 | ||||
-rw-r--r-- | cui/source/options/optinet2.hxx | 4 |
2 files changed, 1 insertions, 5 deletions
diff --git a/cui/source/options/optinet2.cxx b/cui/source/options/optinet2.cxx index 979e3342065e..19a95a744f6c 100644 --- a/cui/source/options/optinet2.cxx +++ b/cui/source/options/optinet2.cxx @@ -111,8 +111,6 @@ using ::rtl::OUString; #include <sal/config.h> -SV_IMPL_PTRARR( SfxFilterPtrArr, SfxFilterPtr ) - // ----------------------------------------------------------------------- void SvxNoSpaceEdit::KeyInput( const KeyEvent& rKEvent ) diff --git a/cui/source/options/optinet2.hxx b/cui/source/options/optinet2.hxx index 30f249a25eba..6303423e6329 100644 --- a/cui/source/options/optinet2.hxx +++ b/cui/source/options/optinet2.hxx @@ -32,7 +32,6 @@ #include <vcl/lstbox.hxx> #include <vcl/group.hxx> #include <vcl/field.hxx> -#include <svl/svarray.hxx> #include <svtools/stdctrl.hxx> #include <svtools/svtabbx.hxx> #include <sfx2/tabdlg.hxx> @@ -69,8 +68,7 @@ public: virtual void Modify(); }; -typedef SfxFilter* SfxFilterPtr; -SV_DECL_PTRARR( SfxFilterPtrArr, SfxFilterPtr, 0 ) +typedef std::vector<SfxFilter*> SfxFilterPtrArr; // class SvxProxyTabPage ------------------------------------------------- |