diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-11-02 09:52:33 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-11-02 10:16:38 +0000 |
commit | 4ea0390faa22037f1d4f703c0882a027cf2ae643 (patch) | |
tree | cbcc7db6e327ef0efa53d26241fc48f0ff2ee90f /scripting/source/stringresource | |
parent | 708d1c5ab242b545ced598879233fc662d7e6cc0 (diff) |
cppcheck: noExplicitConstructor
Change-Id: I06186e8f0bbc8522f538e8639a68e816093becc2
Diffstat (limited to 'scripting/source/stringresource')
-rw-r--r-- | scripting/source/stringresource/stringresource.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripting/source/stringresource/stringresource.hxx b/scripting/source/stringresource/stringresource.hxx index ea392048893e..7d4dc714ee90 100644 --- a/scripting/source/stringresource/stringresource.hxx +++ b/scripting/source/stringresource/stringresource.hxx @@ -159,7 +159,7 @@ protected: virtual void implLoadAllLocales(); public: - StringResourceImpl( + explicit StringResourceImpl( const css::uno::Reference< css::uno::XComponentContext >& rxContext ); virtual ~StringResourceImpl(); @@ -311,7 +311,7 @@ protected: throw (css::uno::Exception, css::uno::RuntimeException, std::exception); public: - StringResourcePersistenceImpl( + explicit StringResourcePersistenceImpl( const css::uno::Reference< css::uno::XComponentContext >& rxContext ); virtual ~StringResourcePersistenceImpl(); @@ -421,7 +421,7 @@ class StringResourceWithStorageImpl : public StringResourceWithStorageImpl_BASE virtual bool implLoadLocale( LocaleItem* pLocaleItem ) override; public: - StringResourceWithStorageImpl( const css::uno::Reference< css::uno::XComponentContext >& rxContext ); + explicit StringResourceWithStorageImpl( const css::uno::Reference< css::uno::XComponentContext >& rxContext ); virtual ~StringResourceWithStorageImpl(); // XServiceInfo @@ -546,7 +546,7 @@ class StringResourceWithLocationImpl : public StringResourceWithLocationImpl_BAS virtual bool implLoadLocale( LocaleItem* pLocaleItem ) override; public: - StringResourceWithLocationImpl( const css::uno::Reference< css::uno::XComponentContext >& rxContext ); + explicit StringResourceWithLocationImpl( const css::uno::Reference< css::uno::XComponentContext >& rxContext ); virtual ~StringResourceWithLocationImpl(); // XServiceInfo |