diff options
author | Noel Grandin <noel@peralex.com> | 2015-08-03 14:03:54 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-08-04 08:55:56 +0200 |
commit | 3fc7f4c582c04a11bbd6ebede8e8bdc99f3b2034 (patch) | |
tree | adee3f9d3bef6cddf7039d4eada4e4028a65c19e /svx | |
parent | 9e6b501833d4e45ba0239d1adf4911f140304569 (diff) |
svx,starmath: inline some use-once typedefs
Change-Id: I5a7405d326b7258cbed476c30f88e57559b4cc8e
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/accessibility/AccessibleFrameSelector.cxx | 48 | ||||
-rw-r--r-- | svx/source/engine3d/scene3d.cxx | 7 | ||||
-rw-r--r-- | svx/source/form/fmundo.cxx | 3 | ||||
-rw-r--r-- | svx/source/inc/fmshimp.hxx | 6 | ||||
-rw-r--r-- | svx/source/table/celltypes.hxx | 2 | ||||
-rw-r--r-- | svx/source/table/tablemodel.hxx | 4 | ||||
-rw-r--r-- | svx/source/table/tablertfimporter.cxx | 5 |
7 files changed, 26 insertions, 49 deletions
diff --git a/svx/source/accessibility/AccessibleFrameSelector.cxx b/svx/source/accessibility/AccessibleFrameSelector.cxx index 9c26619c0f2f..c40dfb50ce12 100644 --- a/svx/source/accessibility/AccessibleFrameSelector.cxx +++ b/svx/source/accessibility/AccessibleFrameSelector.cxx @@ -55,16 +55,6 @@ using ::com::sun::star::awt::XFocusListener; using namespace ::com::sun::star::accessibility; -namespace AwtKey = ::com::sun::star::awt::Key; -namespace AwtKeyModifier = ::com::sun::star::awt::KeyModifier; -namespace AwtFocusChangeReason = ::com::sun::star::awt::FocusChangeReason; - -typedef ::com::sun::star::awt::Point AwtPoint; -typedef ::com::sun::star::awt::Size AwtSize; -typedef ::com::sun::star::awt::Rectangle AwtRectangle; -typedef ::com::sun::star::awt::FocusEvent AwtFocusEvent; - - AccFrameSelector::AccFrameSelector( FrameSelector& rFrameSel, FrameBorderType eBorder ) : Resource( SVX_RES( RID_SVXSTR_BORDER_CONTROL ) ), @@ -270,7 +260,7 @@ Locale AccFrameSelector::getLocale( ) return Application::GetSettings().GetUILanguageTag().getLocale(); } -sal_Bool AccFrameSelector::containsPoint( const AwtPoint& aPt ) +sal_Bool AccFrameSelector::containsPoint( const css::awt::Point& aPt ) throw (RuntimeException, std::exception) { SolarMutexGuard aGuard; @@ -280,7 +270,7 @@ sal_Bool AccFrameSelector::containsPoint( const AwtPoint& aPt ) } Reference< XAccessible > AccFrameSelector::getAccessibleAtPoint( - const AwtPoint& aPt ) + const css::awt::Point& aPt ) throw (RuntimeException, std::exception) { SolarMutexGuard aGuard; @@ -289,7 +279,7 @@ Reference< XAccessible > AccFrameSelector::getAccessibleAtPoint( return mpFrameSel->GetChildAccessible( Point( aPt.X, aPt.Y ) ); } -AwtRectangle AccFrameSelector::getBounds( ) throw (RuntimeException, std::exception) +css::awt::Rectangle AccFrameSelector::getBounds( ) throw (RuntimeException, std::exception) { SolarMutexGuard aGuard; IsValid(); @@ -306,7 +296,7 @@ AwtRectangle AccFrameSelector::getBounds( ) throw (RuntimeException, std::excep aPos = aSpot.TopLeft(); aSz = aSpot.GetSize(); } - AwtRectangle aRet; + css::awt::Rectangle aRet; aRet.X = aPos.X(); aRet.Y = aPos.Y(); aRet.Width = aSz.Width(); @@ -316,7 +306,7 @@ AwtRectangle AccFrameSelector::getBounds( ) throw (RuntimeException, std::excep -AwtPoint AccFrameSelector::getLocation( ) throw (RuntimeException, std::exception) +css::awt::Point AccFrameSelector::getLocation( ) throw (RuntimeException, std::exception) { SolarMutexGuard aGuard; IsValid(); @@ -330,13 +320,13 @@ AwtPoint AccFrameSelector::getLocation( ) throw (RuntimeException, std::excepti const Rectangle aSpot = mpFrameSel->GetClickBoundRect( meBorder ); aPos = aSpot.TopLeft(); } - AwtPoint aRet(aPos.X(), aPos.Y()); + css::awt::Point aRet(aPos.X(), aPos.Y()); return aRet; } -AwtPoint AccFrameSelector::getLocationOnScreen( ) throw (RuntimeException, std::exception) +css::awt::Point AccFrameSelector::getLocationOnScreen( ) throw (RuntimeException, std::exception) { SolarMutexGuard aGuard; IsValid(); @@ -351,13 +341,13 @@ AwtPoint AccFrameSelector::getLocationOnScreen( ) throw (RuntimeException, std: aPos = aSpot.TopLeft(); } aPos = mpFrameSel->OutputToAbsoluteScreenPixel( aPos ); - AwtPoint aRet(aPos.X(), aPos.Y()); + css::awt::Point aRet(aPos.X(), aPos.Y()); return aRet; } -AwtSize AccFrameSelector::getSize( ) throw (RuntimeException, std::exception) +css::awt::Size AccFrameSelector::getSize( ) throw (RuntimeException, std::exception) { SolarMutexGuard aGuard; IsValid(); @@ -371,7 +361,7 @@ AwtSize AccFrameSelector::getSize( ) throw (RuntimeException, std::exception) const Rectangle aSpot = mpFrameSel->GetClickBoundRect( meBorder ); aSz = aSpot.GetSize(); } - AwtSize aRet(aSz.Width(), aSz.Height()); + css::awt::Size aRet(aSz.Width(), aSz.Height()); return aRet; } @@ -457,28 +447,28 @@ void AccFrameSelector::IsValid() throw (RuntimeException) throw RuntimeException(); } -void AccFrameSelector::NotifyFocusListeners(bool bGetFocus) +void AccFrameSelector::NotifyFocusListeners(bool bGetFocus) { SolarMutexGuard aGuard; - AwtFocusEvent aEvent; + css::awt::FocusEvent aEvent; aEvent.FocusFlags = 0; if(bGetFocus) { GetFocusFlags nFocusFlags = mpFrameSel->GetGetFocusFlags(); if(nFocusFlags & GetFocusFlags::Tab) - aEvent.FocusFlags |= AwtFocusChangeReason::TAB; + aEvent.FocusFlags |= css::awt::FocusChangeReason::TAB; if(nFocusFlags & GetFocusFlags::CURSOR) - aEvent.FocusFlags |= AwtFocusChangeReason::CURSOR; + aEvent.FocusFlags |= css::awt::FocusChangeReason::CURSOR; if(nFocusFlags & GetFocusFlags::Mnemonic) - aEvent.FocusFlags |= AwtFocusChangeReason::MNEMONIC; + aEvent.FocusFlags |= css::awt::FocusChangeReason::MNEMONIC; if(nFocusFlags & GetFocusFlags::Forward) - aEvent.FocusFlags |= AwtFocusChangeReason::FORWARD; + aEvent.FocusFlags |= css::awt::FocusChangeReason::FORWARD; if(nFocusFlags & GetFocusFlags::Backward) - aEvent.FocusFlags |= AwtFocusChangeReason::BACKWARD; + aEvent.FocusFlags |= css::awt::FocusChangeReason::BACKWARD; if(nFocusFlags & GetFocusFlags::Around) - aEvent.FocusFlags |= AwtFocusChangeReason::AROUND; + aEvent.FocusFlags |= css::awt::FocusChangeReason::AROUND; if(nFocusFlags & GetFocusFlags::UniqueMnemonic) - aEvent.FocusFlags |= AwtFocusChangeReason::UNIQUEMNEMONIC; + aEvent.FocusFlags |= css::awt::FocusChangeReason::UNIQUEMNEMONIC; } aEvent.Temporary = sal_False; diff --git a/svx/source/engine3d/scene3d.cxx b/svx/source/engine3d/scene3d.cxx index d4c5b47b47e0..ab36ed2461aa 100644 --- a/svx/source/engine3d/scene3d.cxx +++ b/svx/source/engine3d/scene3d.cxx @@ -106,14 +106,9 @@ bool ImpRemap3DDepth::operator<(const ImpRemap3DDepth& rComp) const } } -// typedefs for a vector of ImpRemap3DDepths -typedef ::std::vector< ImpRemap3DDepth > ImpRemap3DDepthVector; - - - class Imp3DDepthRemapper { - ImpRemap3DDepthVector maVector; + std::vector< ImpRemap3DDepth > maVector; public: explicit Imp3DDepthRemapper(E3dScene& rScene); diff --git a/svx/source/form/fmundo.cxx b/svx/source/form/fmundo.cxx index b028941dfacb..02b559add9c6 100644 --- a/svx/source/form/fmundo.cxx +++ b/svx/source/form/fmundo.cxx @@ -75,8 +75,7 @@ using namespace ::dbtools; #include <comphelper/processfactory.hxx> #include <cppuhelper/implbase1.hxx> -typedef cppu::WeakImplHelper1< XScriptListener > ScriptEventListener_BASE; -class ScriptEventListenerWrapper : public ScriptEventListener_BASE +class ScriptEventListenerWrapper : public cppu::WeakImplHelper1< XScriptListener > { public: explicit ScriptEventListenerWrapper( FmFormModel& _rModel) throw ( RuntimeException ) 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; diff --git a/svx/source/table/celltypes.hxx b/svx/source/table/celltypes.hxx index c01c6eab6bcf..67fe2249c415 100644 --- a/svx/source/table/celltypes.hxx +++ b/svx/source/table/celltypes.hxx @@ -35,8 +35,6 @@ typedef rtl::Reference< Cell > CellRef; typedef rtl::Reference< TableModel > TableModelRef; typedef rtl::Reference< TableRow > TableRowRef; typedef rtl::Reference< TableColumn > TableColumnRef; -typedef rtl::Reference< TableRows > TableRowsRef; -typedef rtl::Reference< TableColumns > TableColumnsRef; typedef std::vector< CellRef > CellVector; typedef std::vector< TableRowRef > RowVector; typedef std::vector< TableColumnRef > ColumnVector; diff --git a/svx/source/table/tablemodel.hxx b/svx/source/table/tablemodel.hxx index 757711c199af..80fc4ce8a7b4 100644 --- a/svx/source/table/tablemodel.hxx +++ b/svx/source/table/tablemodel.hxx @@ -169,8 +169,8 @@ private: RowVector maRows; ColumnVector maColumns; - TableColumnsRef mxTableColumns; - TableRowsRef mxTableRows; + rtl::Reference< TableColumns > mxTableColumns; + rtl::Reference< TableRows > mxTableRows; SdrTableObj* mpTableObj; diff --git a/svx/source/table/tablertfimporter.cxx b/svx/source/table/tablertfimporter.cxx index 6f5655f26583..3740bc756bad 100644 --- a/svx/source/table/tablertfimporter.cxx +++ b/svx/source/table/tablertfimporter.cxx @@ -75,8 +75,6 @@ typedef std::vector< RTFCellInfoPtr > RTFColumnVector; typedef boost::shared_ptr< RTFColumnVector > RTFColumnVectorPtr; -typedef std::vector< RTFColumnVectorPtr > RTFRowVector; - class SdrTableRTFParser { public: @@ -115,8 +113,7 @@ private: sal_Int32 mnColMax; std::vector< sal_Int32 > maColumnEdges; - - RTFRowVector maRows; + std::vector< RTFColumnVectorPtr > maRows; RTFCellDefault* mpInsDefault; RTFCellDefault* mpActDefault; |