diff options
author | Jochen Nitschke <j.nitschke+logerrit@ok.de> | 2016-11-01 11:44:15 +0100 |
---|---|---|
committer | Jochen Nitschke <j.nitschke+logerrit@ok.de> | 2016-11-01 18:44:20 +0000 |
commit | 8826771e8398063018935c38039c05faf4c993a3 (patch) | |
tree | f726abbbc99a3a1c39c726a47f5f121573ab1c8b /extensions | |
parent | 33bc51a60523f23a860534a39a096fecce192671 (diff) |
style fixes for cppcheck noExplicitConstructor
Change-Id: I2a690caea7656f2a18beb6d09f53154178a30f34
Reviewed-on: https://gerrit.libreoffice.org/30460
Reviewed-by: Jochen Nitschke <j.nitschke+logerrit@ok.de>
Tested-by: Jochen Nitschke <j.nitschke+logerrit@ok.de>
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/bibliography/bibcont.hxx | 2 | ||||
-rw-r--r-- | extensions/source/propctrlr/browserlistbox.hxx | 2 | ||||
-rw-r--r-- | extensions/source/propctrlr/propertyeditor.hxx | 2 | ||||
-rw-r--r-- | extensions/source/propctrlr/usercontrol.hxx | 6 |
4 files changed, 6 insertions, 6 deletions
diff --git a/extensions/source/bibliography/bibcont.hxx b/extensions/source/bibliography/bibcont.hxx index f8547538d222..028cfff8fc11 100644 --- a/extensions/source/bibliography/bibcont.hxx +++ b/extensions/source/bibliography/bibcont.hxx @@ -82,7 +82,7 @@ class BibBookContainer: public BibSplitWindow public: - BibBookContainer(vcl::Window* pParent ); + explicit BibBookContainer(vcl::Window* pParent ); virtual ~BibBookContainer() override; virtual void dispose() override; diff --git a/extensions/source/propctrlr/browserlistbox.hxx b/extensions/source/propctrlr/browserlistbox.hxx index 07f2d4869d1e..21710f213e45 100644 --- a/extensions/source/propctrlr/browserlistbox.hxx +++ b/extensions/source/propctrlr/browserlistbox.hxx @@ -102,7 +102,7 @@ namespace pcr void Resize() override; public: - OBrowserListBox( vcl::Window* pParent ); + explicit OBrowserListBox( vcl::Window* pParent ); virtual ~OBrowserListBox() override; virtual void dispose() override; diff --git a/extensions/source/propctrlr/propertyeditor.hxx b/extensions/source/propctrlr/propertyeditor.hxx index 03be07a963b7..a40c312b9893 100644 --- a/extensions/source/propctrlr/propertyeditor.hxx +++ b/extensions/source/propctrlr/propertyeditor.hxx @@ -69,7 +69,7 @@ namespace pcr void GetFocus() override; public: - OPropertyEditor (vcl::Window* pParent); + explicit OPropertyEditor (vcl::Window* pParent); virtual ~OPropertyEditor() override; virtual void dispose() override; diff --git a/extensions/source/propctrlr/usercontrol.hxx b/extensions/source/propctrlr/usercontrol.hxx index d45876434c68..4a5719ac2d0e 100644 --- a/extensions/source/propctrlr/usercontrol.hxx +++ b/extensions/source/propctrlr/usercontrol.hxx @@ -59,7 +59,7 @@ namespace pcr class OFormatSampleControl : public OFormatSampleControl_Base { public: - OFormatSampleControl( vcl::Window* pParent ); + explicit OFormatSampleControl( vcl::Window* pParent ); // XPropertyControl virtual css::uno::Any SAL_CALL getValue() throw (css::uno::RuntimeException, std::exception) override; @@ -128,7 +128,7 @@ namespace pcr class OFileUrlControl : public OFileUrlControl_Base { public: - OFileUrlControl( vcl::Window* pParent ); + explicit OFileUrlControl( vcl::Window* pParent ); // XPropertyControl virtual css::uno::Any SAL_CALL getValue() throw (css::uno::RuntimeException, std::exception) override; @@ -145,7 +145,7 @@ namespace pcr class OTimeDurationControl : public ONumericControl { public: - OTimeDurationControl( vcl::Window* pParent ); + explicit OTimeDurationControl( vcl::Window* pParent ); virtual ~OTimeDurationControl() override; // XPropertyControl |