diff options
author | Noel Grandin <noel@peralex.com> | 2015-10-29 10:47:45 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-10-29 10:24:23 +0000 |
commit | e195b2ec9559390c4d1172e0a1e4322dbc7dd45d (patch) | |
tree | d8b1e6dc6f2e5af0bffe747abc649d1db99fe082 /slideshow/source/engine/slide/shapemanagerimpl.hxx | |
parent | 4092da68f5e71b3fb82382a8f3d31d2cd05289d7 (diff) |
com::sun::star->css in slideshow
Change-Id: I7ae3c5198c22a3937e8c3ef87f48fa2a7e562c62
Reviewed-on: https://gerrit.libreoffice.org/19664
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'slideshow/source/engine/slide/shapemanagerimpl.hxx')
-rw-r--r-- | slideshow/source/engine/slide/shapemanagerimpl.hxx | 28 |
1 files changed, 11 insertions, 17 deletions
diff --git a/slideshow/source/engine/slide/shapemanagerimpl.hxx b/slideshow/source/engine/slide/shapemanagerimpl.hxx index 611f33d9d3d8..ea95070b748f 100644 --- a/slideshow/source/engine/slide/shapemanagerimpl.hxx +++ b/slideshow/source/engine/slide/shapemanagerimpl.hxx @@ -95,13 +95,13 @@ private: virtual bool handleMousePressed( - ::com::sun::star::awt::MouseEvent const& evt ) override; + css::awt::MouseEvent const& evt ) override; virtual bool handleMouseReleased( - ::com::sun::star::awt::MouseEvent const& evt ) override; + css::awt::MouseEvent const& evt ) override; virtual bool handleMouseDragged( - ::com::sun::star::awt::MouseEvent const& evt ) override; + css::awt::MouseEvent const& evt ) override; virtual bool handleMouseMoved( - ::com::sun::star::awt::MouseEvent const& evt ) override; + css::awt::MouseEvent const& evt ) override; // ViewUpdate interface @@ -118,8 +118,7 @@ private: virtual void leaveAnimationMode( const AnimatableShapeSharedPtr& rShape ) override; virtual void notifyShapeUpdate( const ShapeSharedPtr& rShape ) override; virtual ShapeSharedPtr lookupShape( - ::com::sun::star::uno::Reference< - ::com::sun::star::drawing::XShape > const & xShape ) const override; + css::uno::Reference< css::drawing::XShape > const & xShape ) const override; virtual void addHyperlinkArea( const boost::shared_ptr<HyperlinkArea>& rArea ) override; @@ -144,22 +143,17 @@ private: // ShapeListenerEventHandler - virtual bool listenerAdded( const ::com::sun::star::uno::Reference< - ::com::sun::star::presentation::XShapeEventListener>& xListener, - const ::com::sun::star::uno::Reference< - ::com::sun::star::drawing::XShape>& xShape ) override; + virtual bool listenerAdded( const css::uno::Reference< css::presentation::XShapeEventListener>& xListener, + const css::uno::Reference< css::drawing::XShape>& xShape ) override; - virtual bool listenerRemoved( const ::com::sun::star::uno::Reference< - ::com::sun::star::presentation::XShapeEventListener>& xListener, - const ::com::sun::star::uno::Reference< - ::com::sun::star::drawing::XShape>& xShape ) override; + virtual bool listenerRemoved( const css::uno::Reference< css::presentation::XShapeEventListener>& xListener, + const css::uno::Reference< css::drawing::XShape>& xShape ) override; // ShapeCursorEventHandler interface - bool cursorChanged( const ::com::sun::star::uno::Reference< - ::com::sun::star::drawing::XShape>& xShape, - sal_Int16 nCursor ); + bool cursorChanged( const css::uno::Reference< css::drawing::XShape>& xShape, + sal_Int16 nCursor ); OUString checkForHyperlink( ::basegfx::B2DPoint const& hitPos )const; |