diff options
author | Noel Grandin <noel@peralex.com> | 2015-10-28 12:01:32 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-10-29 09:50:19 +0200 |
commit | a2795356608c9de3679ccd3076c7df14cb549d8b (patch) | |
tree | 327bd5f473f476ef96843438898e506964d50f38 /sd/workben | |
parent | b0f7efe83096655348d32782636bf0f54d837834 (diff) |
com::sun::star->css in sd
Change-Id: Ic0cbc857a3a9c66241b94c30bf8c859435f5a4b4
Diffstat (limited to 'sd/workben')
-rw-r--r-- | sd/workben/custompanel/ctp_panel.hxx | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/sd/workben/custompanel/ctp_panel.hxx b/sd/workben/custompanel/ctp_panel.hxx index 1bc69b686951..6289b8cf3d0c 100644 --- a/sd/workben/custompanel/ctp_panel.hxx +++ b/sd/workben/custompanel/ctp_panel.hxx @@ -36,36 +36,36 @@ namespace sd { namespace colortoolpanel { // class SingleColorPanel - typedef ::cppu::WeakComponentImplHelper < ::com::sun::star::drawing::framework::XView - , ::com::sun::star::ui::XToolPanel - , ::com::sun::star::awt::XPaintListener + typedef ::cppu::WeakComponentImplHelper < css::drawing::framework::XView + , css::ui::XToolPanel + , css::awt::XPaintListener > SingleColorPanel_Base; class SingleColorPanel :public ::cppu::BaseMutex ,public SingleColorPanel_Base { public: SingleColorPanel( - const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& i_rContext, - const ::com::sun::star::uno::Reference< ::com::sun::star::drawing::framework::XConfigurationController >& i_rConfigController, - const ::com::sun::star::uno::Reference< ::com::sun::star::drawing::framework::XResourceId >& i_rResourceId + const css::uno::Reference< css::uno::XComponentContext >& i_rContext, + const css::uno::Reference< css::drawing::framework::XConfigurationController >& i_rConfigController, + const css::uno::Reference< css::drawing::framework::XResourceId >& i_rResourceId ); // XToolPanel - virtual ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindow > SAL_CALL getWindow( ) throw (::com::sun::star::uno::RuntimeException); - virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > SAL_CALL createAccessible( const ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible >& ParentAccessible ) throw (::com::sun::star::uno::RuntimeException); + virtual css::uno::Reference< css::awt::XWindow > SAL_CALL getWindow( ) throw (css::uno::RuntimeException); + virtual css::uno::Reference< css::accessibility::XAccessible > SAL_CALL createAccessible( const css::uno::Reference< css::accessibility::XAccessible >& ParentAccessible ) throw (css::uno::RuntimeException); // XView // (no methods) // XResource - virtual ::com::sun::star::uno::Reference< ::com::sun::star::drawing::framework::XResourceId > SAL_CALL getResourceId( ) throw (::com::sun::star::uno::RuntimeException); - virtual sal_Bool SAL_CALL isAnchorOnly( ) throw (::com::sun::star::uno::RuntimeException); + virtual css::uno::Reference< css::drawing::framework::XResourceId > SAL_CALL getResourceId( ) throw (css::uno::RuntimeException); + virtual sal_Bool SAL_CALL isAnchorOnly( ) throw (css::uno::RuntimeException); // XPaintListener - virtual void SAL_CALL windowPaint( const ::com::sun::star::awt::PaintEvent& e ) throw (::com::sun::star::uno::RuntimeException); + virtual void SAL_CALL windowPaint( const css::awt::PaintEvent& e ) throw (css::uno::RuntimeException); // XEventListener - virtual void SAL_CALL disposing( const ::com::sun::star::lang::EventObject& Source ) throw (::com::sun::star::uno::RuntimeException); + virtual void SAL_CALL disposing( const css::lang::EventObject& Source ) throw (css::uno::RuntimeException); // XComponent equivalents virtual void SAL_CALL disposing(); @@ -74,9 +74,9 @@ namespace sd { namespace colortoolpanel ~SingleColorPanel(); private: - ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > m_xContext; - ::com::sun::star::uno::Reference< ::com::sun::star::drawing::framework::XResourceId > m_xResourceId; - ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindow > m_xWindow; + css::uno::Reference< css::uno::XComponentContext > m_xContext; + css::uno::Reference< css::drawing::framework::XResourceId > m_xResourceId; + css::uno::Reference< css::awt::XWindow > m_xWindow; }; } } // namespace sd::colortoolpanel |