diff options
Diffstat (limited to 'animations/source')
-rw-r--r-- | animations/source/animcore/animcore.cxx | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/animations/source/animcore/animcore.cxx b/animations/source/animcore/animcore.cxx index 493e1fa1d102..72853c5cdb45 100644 --- a/animations/source/animcore/animcore.cxx +++ b/animations/source/animcore/animcore.cxx @@ -2101,14 +2101,10 @@ void SAL_CALL AnimationNode::removeChangesListener( const Reference< XChangesLis } } -namespace -{ - class theAnimationNodeUnoTunnelId : public rtl::Static< UnoTunnelIdInit, theAnimationNodeUnoTunnelId > {}; -} - const css::uno::Sequence< sal_Int8 > & AnimationNode::getUnoTunnelId() { - return theAnimationNodeUnoTunnelId::get().getSeq(); + static const UnoTunnelIdInit theAnimationNodeUnoTunnelId; + return theAnimationNodeUnoTunnelId.getSeq(); } |