diff options
author | Noel Grandin <noel@peralex.com> | 2015-11-27 11:14:38 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-03-14 13:43:38 +0200 |
commit | 8353667d35bc511378c9b14261b6bb11b7bd56aa (patch) | |
tree | a065c941301f2b693445958046360b27a651d439 /chart2/source/controller/inc/ItemConverter.hxx | |
parent | 6c47de46613b531bd975d073cf31c3fda6f8b8da (diff) |
com::sun::star->css in chart2
Change-Id: I04320d32d6d5c54e461cfabef58645f8b772bc69
Diffstat (limited to 'chart2/source/controller/inc/ItemConverter.hxx')
-rw-r--r-- | chart2/source/controller/inc/ItemConverter.hxx | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/chart2/source/controller/inc/ItemConverter.hxx b/chart2/source/controller/inc/ItemConverter.hxx index 6218f3842feb..8ccc785549d5 100644 --- a/chart2/source/controller/inc/ItemConverter.hxx +++ b/chart2/source/controller/inc/ItemConverter.hxx @@ -73,8 +73,7 @@ public: reading/writing converted items */ ItemConverter( - const ::com::sun::star::uno::Reference< - ::com::sun::star::beans::XPropertySet > & rPropertySet , + const css::uno::Reference< css::beans::XPropertySet > & rPropertySet , SfxItemPool& rItemPool ); virtual ~ItemConverter(); @@ -160,7 +159,7 @@ protected: @return true if the item changed a property, false otherwise. */ virtual bool ApplySpecialItem( sal_uInt16 nWhichId, const SfxItemSet & rItemSet ) - throw( ::com::sun::star::uno::Exception ); + throw( css::uno::Exception ); /// Returns the pool SfxItemPool & GetItemPool() const { return m_rItemPool;} @@ -168,11 +167,10 @@ protected: /** Returns the XPropertySet that was given in the CTOR and is used to apply items in ApplyItemSet(). */ - ::com::sun::star::uno::Reference< - ::com::sun::star::beans::XPropertySet > GetPropertySet() const { return m_xPropertySet;} + css::uno::Reference< css::beans::XPropertySet > GetPropertySet() const { return m_xPropertySet;} // ____ ::utl::OEventListenerAdapter ____ - virtual void _disposing( const ::com::sun::star::lang::EventObject& rSource ) override; + virtual void _disposing( const css::lang::EventObject& rSource ) override; protected: /** sets a new property set, that you get with GetPropertySet(). It should @@ -180,14 +178,11 @@ protected: the regression type of a regression curve which changes the object identity. */ - void resetPropertySet( const ::com::sun::star::uno::Reference< - ::com::sun::star::beans::XPropertySet > & xPropSet ); + void resetPropertySet( const css::uno::Reference< css::beans::XPropertySet > & xPropSet ); private: - ::com::sun::star::uno::Reference< - ::com::sun::star::beans::XPropertySet > m_xPropertySet; - ::com::sun::star::uno::Reference< - ::com::sun::star::beans::XPropertySetInfo > m_xPropertySetInfo; + css::uno::Reference< css::beans::XPropertySet > m_xPropertySet; + css::uno::Reference< css::beans::XPropertySetInfo > m_xPropertySetInfo; SfxItemPool& m_rItemPool; bool m_bIsValid; |