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/animationnodes/basenode.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/animationnodes/basenode.hxx')
-rw-r--r-- | slideshow/source/engine/animationnodes/basenode.hxx | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/slideshow/source/engine/animationnodes/basenode.hxx b/slideshow/source/engine/animationnodes/basenode.hxx index 28322a5385af..25dd2b94fadc 100644 --- a/slideshow/source/engine/animationnodes/basenode.hxx +++ b/slideshow/source/engine/animationnodes/basenode.hxx @@ -78,8 +78,7 @@ class BaseNode : public AnimationNode, private ::boost::noncopyable { public: - BaseNode( ::com::sun::star::uno::Reference< - ::com::sun::star::animations::XAnimationNode> const& xNode, + BaseNode( css::uno::Reference<css::animations::XAnimationNode> const& xNode, ::boost::shared_ptr<BaseContainerNode> const& pParent, NodeContext const& rContext ); @@ -110,8 +109,7 @@ public: virtual bool activate() override; virtual void deactivate() override; virtual void end() override; - virtual ::com::sun::star::uno::Reference< - ::com::sun::star::animations::XAnimationNode> getXAnimationNode() const override; + virtual css::uno::Reference<css::animations::XAnimationNode> getXAnimationNode() const override; virtual NodeState getState() const override; virtual bool registerDeactivatingListener( const AnimationNodeSharedPtr& rNotifee ) override; @@ -192,8 +190,7 @@ private: typedef ::std::vector< AnimationNodeSharedPtr > ListenerVector; ListenerVector maDeactivatingListeners; - ::com::sun::star::uno::Reference< - ::com::sun::star::animations::XAnimationNode > mxAnimationNode; + css::uno::Reference< css::animations::XAnimationNode > mxAnimationNode; ::boost::shared_ptr< BaseContainerNode > mpParent; ::boost::shared_ptr< BaseNode > mpSelf; const int* mpStateTransitionTable; |