diff options
-rw-r--r-- | starmath/inc/error.hxx | 4 | ||||
-rw-r--r-- | starmath/inc/node.hxx | 1 | ||||
-rw-r--r-- | starmath/inc/parse.hxx | 4 | ||||
-rw-r--r-- | starmath/source/parse.cxx | 4 | ||||
-rw-r--r-- | stoc/test/testintrosp.cxx | 8 | ||||
-rw-r--r-- | svl/source/inc/poolio.hxx | 5 | ||||
-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 |
13 files changed, 34 insertions, 67 deletions
diff --git a/starmath/inc/error.hxx b/starmath/inc/error.hxx index 9d3dc3026313..7794a4a9b14a 100644 --- a/starmath/inc/error.hxx +++ b/starmath/inc/error.hxx @@ -21,8 +21,6 @@ #include <rtl/ustring.hxx> -#include <boost/ptr_container/ptr_vector.hpp> - class SmNode; enum SmParseError @@ -48,8 +46,6 @@ struct SmErrorDesc OUString Text; }; -typedef boost::ptr_vector< SmErrorDesc > SmErrDescList; - #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/starmath/inc/node.hxx b/starmath/inc/node.hxx index 91912bb920ce..ff6f797bc105 100644 --- a/starmath/inc/node.hxx +++ b/starmath/inc/node.hxx @@ -63,7 +63,6 @@ class SmStructureNode; typedef std::shared_ptr<SmNode> SmNodePointer; typedef boost::ptr_deque<SmNode> SmNodeStack; typedef std::vector< SmNode * > SmNodeArray; -typedef std::vector< SmStructureNode * > SmStructureNodeArray; template < typename T > T* popOrZero( boost::ptr_deque<T> & rStack ) diff --git a/starmath/inc/parse.hxx b/starmath/inc/parse.hxx index d9ce5a5f7755..f44f379a7e63 100644 --- a/starmath/inc/parse.hxx +++ b/starmath/inc/parse.hxx @@ -20,8 +20,8 @@ #define INCLUDED_STARMATH_INC_PARSE_HXX #include <vcl/svapp.hxx> - #include <set> +#include <boost/ptr_container/ptr_vector.hpp> #include "types.hxx" #include "token.hxx" @@ -33,7 +33,7 @@ class SmParser OUString m_aBufferString; SmToken m_aCurToken; SmNodeStack m_aNodeStack; - SmErrDescList m_aErrDescList; + boost::ptr_vector< SmErrorDesc > m_aErrDescList; int m_nCurError; LanguageType m_nLang; sal_Int32 m_nBufferIndex, diff --git a/starmath/source/parse.cxx b/starmath/source/parse.cxx index 873ac624a4d2..59f509163508 100644 --- a/starmath/source/parse.cxx +++ b/starmath/source/parse.cxx @@ -1523,8 +1523,8 @@ void SmParser::DoTerm(bool bGroupNumberIdent) } else if ( TokenInGroup(TGATTRIBUT) || TokenInGroup(TGFONTATTR)) - { SmStructureNodeArray aArray; - + { + std::vector< SmStructureNode * > aArray; bool bIsAttr; sal_uInt16 n = 0; while ( (bIsAttr = TokenInGroup(TGATTRIBUT)) diff --git a/stoc/test/testintrosp.cxx b/stoc/test/testintrosp.cxx index 2843169ba785..4c2ab0934f16 100644 --- a/stoc/test/testintrosp.cxx +++ b/stoc/test/testintrosp.cxx @@ -54,10 +54,6 @@ using namespace css::beans::PropertyAttribute; -typedef WeakImplHelper4< XIntroTest, XPropertySet, XNameAccess, XIndexAccess > ImplIntroTestHelper; -typedef WeakImplHelper1< XPropertySetInfo > ImplPropertySetInfoHelper; - - #define DEFAULT_INDEX_ACCESS_COUNT 10 #define DEFAULT_NAME_ACCESS_COUNT 5 @@ -176,7 +172,7 @@ OUString AnyToString( const Any& aValue, sal_Bool bIncludeType, const Reference< // XPropertySetInfo for test class -class ImplPropertySetInfo : public ImplPropertySetInfoHelper +class ImplPropertySetInfo : public WeakImplHelper1< XPropertySetInfo > { friend class ImplIntroTest; @@ -257,7 +253,7 @@ sal_Bool ImplPropertySetInfo::hasPropertyByName(const OUString& Name) } -class ImplIntroTest : public ImplIntroTestHelper +class ImplIntroTest : public WeakImplHelper4< XIntroTest, XPropertySet, XNameAccess, XIndexAccess > { Reference< XMultiServiceFactory > mxMgr; diff --git a/svl/source/inc/poolio.hxx b/svl/source/inc/poolio.hxx index ca51c49ee605..ef8640bea32a 100644 --- a/svl/source/inc/poolio.hxx +++ b/svl/source/inc/poolio.hxx @@ -61,7 +61,6 @@ struct SfxPoolVersion_Impl typedef std::vector<SfxPoolItem*> SfxPoolItemArrayBase_Impl; typedef boost::shared_ptr< SfxPoolVersion_Impl > SfxPoolVersion_ImplPtr; -typedef std::deque< SfxPoolVersion_ImplPtr > SfxPoolVersionArr_Impl; /** * This array contains a set of SfxPoolItems, if those items are @@ -90,14 +89,14 @@ struct SfxItemPool_Impl { SfxBroadcaster aBC; std::vector<SfxPoolItemArray_Impl*> maPoolItems; - std::vector<SfxItemPoolUser*> maSfxItemPoolUsers; /// ObjectUser section + std::vector<SfxItemPoolUser*> maSfxItemPoolUsers; /// ObjectUser section OUString aName; SfxPoolItem** ppPoolDefaults; SfxPoolItem** ppStaticDefaults; SfxItemPool* mpMaster; SfxItemPool* mpSecondary; sal_uInt16* mpPoolRanges; - SfxPoolVersionArr_Impl aVersions; + std::deque< SfxPoolVersion_ImplPtr > aVersions; sal_uInt16 mnStart; sal_uInt16 mnEnd; sal_uInt16 mnFileFormatVersion; 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; |