diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-05-02 14:16:44 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-05-02 16:45:18 +0100 |
commit | 21773f6d9a06012634716f3af5ccc74b6204a569 (patch) | |
tree | e365f0399b2f8b95b7ad4b664b980ac77ac529ac /animations | |
parent | 5c4955ed4593f529fd902cdf3afab3c8150b3214 (diff) |
cppcheck: noExplicitConstructor
Change-Id: I0b1cac50f9e158004f8c1b8294b7a1b9f21f9628
Diffstat (limited to 'animations')
-rw-r--r-- | animations/source/animcore/animcore.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/animations/source/animcore/animcore.cxx b/animations/source/animcore/animcore.cxx index 3fbad43d9a1f..6a1d338941db 100644 --- a/animations/source/animcore/animcore.cxx +++ b/animations/source/animcore/animcore.cxx @@ -129,8 +129,8 @@ public: class AnimationNode : public AnimationNodeBase { public: - AnimationNode( sal_Int16 nNodeType ); - AnimationNode( const AnimationNode& rNode ); + explicit AnimationNode(sal_Int16 nNodeType); + explicit AnimationNode(const AnimationNode& rNode); virtual ~AnimationNode(); // XInterface |