summaryrefslogtreecommitdiff
path: root/svx/source/inc/fmshimp.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-08-03 14:03:54 +0200
committerNoel Grandin <noel@peralex.com>2015-08-04 08:55:56 +0200
commit3fc7f4c582c04a11bbd6ebede8e8bdc99f3b2034 (patch)
treeadee3f9d3bef6cddf7039d4eada4e4028a65c19e /svx/source/inc/fmshimp.hxx
parent9e6b501833d4e45ba0239d1adf4911f140304569 (diff)
svx,starmath: inline some use-once typedefs
Change-Id: I5a7405d326b7258cbed476c30f88e57559b4cc8e
Diffstat (limited to 'svx/source/inc/fmshimp.hxx')
-rw-r--r--svx/source/inc/fmshimp.hxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/svx/source/inc/fmshimp.hxx b/svx/source/inc/fmshimp.hxx
index 0d521ba3b213..29575413ccfd 100644
--- a/svx/source/inc/fmshimp.hxx
+++ b/svx/source/inc/fmshimp.hxx
@@ -64,7 +64,6 @@
#include <vector>
#include <boost/ptr_container/ptr_vector.hpp>
-typedef std::vector<SdrObject*> SdrObjArray;
typedef std::vector< ::com::sun::star::uno::Reference< ::com::sun::star::form::XForm > > FmFormArray;
// catch database exceptions if they occur
@@ -164,7 +163,7 @@ class SVX_DLLPUBLIC FmXFormShell : public FmXFormShell_BASE
// timer for delayed mark
Timer m_aMarkTimer;
- SdrObjArray m_arrSearchedControls;
+ std::vector<SdrObject*> m_arrSearchedControls;
// We enable a permanent cursor for the grid we found a searched text, it's disabled in the next "found" event.
FmFormArray m_aSearchForms;
@@ -569,11 +568,10 @@ public:
};
-typedef boost::ptr_vector<SfxStatusForwarder> StatusForwarderArray;
class SVX_DLLPUBLIC ControlConversionMenuController : public SfxMenuControl
{
protected:
- StatusForwarderArray m_aStatusForwarders;
+ boost::ptr_vector<SfxStatusForwarder> m_aStatusForwarders;
Menu* m_pMainMenu;
PopupMenu* m_pConversionMenu;