diff options
author | Noel Grandin <noel@peralex.com> | 2012-04-15 22:55:48 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-04-19 13:22:38 +0200 |
commit | eb13c2c5b127910367ed2dac4fd2166a6d9c8a70 (patch) | |
tree | 49886071186cdc1abf3cf39e95520348cbc6e4a1 /svx/source/inc/fmshimp.hxx | |
parent | 2de57801ed93ef15d8e4e941ff371d3bf703e273 (diff) |
Convert SV_DECL_PTRARR to std::vector
Diffstat (limited to 'svx/source/inc/fmshimp.hxx')
-rw-r--r-- | svx/source/inc/fmshimp.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/inc/fmshimp.hxx b/svx/source/inc/fmshimp.hxx index e2313e23d14f..26eb304d5325 100644 --- a/svx/source/inc/fmshimp.hxx +++ b/svx/source/inc/fmshimp.hxx @@ -75,11 +75,11 @@ #include <set> #include <vector> -SV_DECL_PTRARR(SdrObjArray, SdrObject*, 32) +typedef std::vector<SdrObject*> SdrObjArray; // SV_DECL_OBJARR(FmFormArray, ::com::sun::star::uno::Reference< ::com::sun::star::form::XForm>, 32, 16); DECLARE_STL_VECTOR( ::com::sun::star::uno::Reference< ::com::sun::star::form::XForm > ,FmFormArray); -// catch databse exceptions if occur +// catch database exceptions if they occur #define DO_SAFE(statement) try { statement; } catch( const Exception& ) { OSL_FAIL("unhandled exception (I tried to move a cursor (or something like that).)"); } #define GA_DISABLE_SYNC 1 |