diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-06-08 09:29:35 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-06-08 11:14:38 +0100 |
commit | 0f71828a9582f241dcddac5fe9a11fdf3a1a4e1c (patch) | |
tree | 75cb6a18fd360d7b2e53f4048a56b2e79e8499c8 /chart2/source/controller/chartapiwrapper/WrappedCharacterHeightProperty.hxx | |
parent | f6e5a0ac09eb1b02caf62980e4caaf3f239b9ca7 (diff) |
cppcheck: noExplicitConstructor
Change-Id: I8b03c27188b02c3c4a9a9fbbe0df1fb1ae1c5caf
Diffstat (limited to 'chart2/source/controller/chartapiwrapper/WrappedCharacterHeightProperty.hxx')
-rw-r--r-- | chart2/source/controller/chartapiwrapper/WrappedCharacterHeightProperty.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chart2/source/controller/chartapiwrapper/WrappedCharacterHeightProperty.hxx b/chart2/source/controller/chartapiwrapper/WrappedCharacterHeightProperty.hxx index 9e59aab5e0ae..ce15c5cee8a2 100644 --- a/chart2/source/controller/chartapiwrapper/WrappedCharacterHeightProperty.hxx +++ b/chart2/source/controller/chartapiwrapper/WrappedCharacterHeightProperty.hxx @@ -59,7 +59,7 @@ protected: class WrappedCharacterHeightProperty : public WrappedCharacterHeightProperty_Base { public: - WrappedCharacterHeightProperty( ReferenceSizePropertyProvider* pRefSizePropProvider ); + explicit WrappedCharacterHeightProperty( ReferenceSizePropertyProvider* pRefSizePropProvider ); virtual ~WrappedCharacterHeightProperty(); static void addWrappedProperties( std::vector< WrappedProperty* >& rList, ReferenceSizePropertyProvider* pRefSizePropProvider ); @@ -68,14 +68,14 @@ public: class WrappedAsianCharacterHeightProperty : public WrappedCharacterHeightProperty_Base { public: - WrappedAsianCharacterHeightProperty( ReferenceSizePropertyProvider* pRefSizePropProvider ); + explicit WrappedAsianCharacterHeightProperty( ReferenceSizePropertyProvider* pRefSizePropProvider ); virtual ~WrappedAsianCharacterHeightProperty(); }; class WrappedComplexCharacterHeightProperty : public WrappedCharacterHeightProperty_Base { public: - WrappedComplexCharacterHeightProperty( ReferenceSizePropertyProvider* pRefSizePropProvider ); + explicit WrappedComplexCharacterHeightProperty( ReferenceSizePropertyProvider* pRefSizePropProvider ); virtual ~WrappedComplexCharacterHeightProperty(); }; |