From 135c63c8f9cc363c0895542b0f3bed48b61ea836 Mon Sep 17 00:00:00 2001 From: Thomas Arnhold Date: Fri, 4 May 2012 15:51:56 +0200 Subject: fdo#48253 Expand SAL_STATIC_CAST and SAL_CONST_CAST Change-Id: I50f0887ceb4517d7ef234f970ca2ba679d533382 --- animations/source/animcore/animcore.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'animations/source') diff --git a/animations/source/animcore/animcore.cxx b/animations/source/animcore/animcore.cxx index e85b80642d7c..e1de9744ff11 100644 --- a/animations/source/animcore/animcore.cxx +++ b/animations/source/animcore/animcore.cxx @@ -520,7 +520,7 @@ AnimationNode::~AnimationNode() #define IMPL_NODE_FACTORY(N,IN,SN)\ Reference< XInterface > SAL_CALL createInstance_##N( const Reference< XComponentContext > & ) throw (Exception)\ {\ - return Reference < XInterface > ( SAL_STATIC_CAST( ::cppu::OWeakObject * , new AnimationNode( N ) ) );\ + return Reference < XInterface > ( (static_cast< ::cppu::OWeakObject * >(new AnimationNode( N )) ) );\ }\ OUString getImplementationName_##N()\ {\ -- cgit