diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-01-07 09:26:48 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-01-07 19:27:28 +0000 |
commit | c9be2744d8ebe673d9cd4b0b7b680565bc544329 (patch) | |
tree | 23fd666cfefe4dc9e70d557e9890fe02b87b6d80 /extensions/source/ole/servprov.hxx | |
parent | 7994b77819a5de7a6da46ab01386883559e7a7d1 (diff) |
cppcheck: noExplicitConstructor
Change-Id: Ifdcb1cc12645d6cdba81d16f94f0268696187cde
Reviewed-on: https://gerrit.libreoffice.org/21201
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'extensions/source/ole/servprov.hxx')
-rw-r--r-- | extensions/source/ole/servprov.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/extensions/source/ole/servprov.hxx b/extensions/source/ole/servprov.hxx index 06ced5eb136a..8cf9e55c77b1 100644 --- a/extensions/source/ole/servprov.hxx +++ b/extensions/source/ole/servprov.hxx @@ -169,7 +169,7 @@ class OleConverter_Impl2 : public WeakImplHelper<XBridgeSupplier2, XInitializati public UnoConversionUtilities<OleConverter_Impl2> { public: - OleConverter_Impl2( const Reference<XMultiServiceFactory>& smgr); + explicit OleConverter_Impl2( const Reference<XMultiServiceFactory>& smgr); OleConverter_Impl2( const Reference<XMultiServiceFactory>& smgr, sal_uInt8 unoWrapperClass, sal_uInt8 comWrapperClass ); virtual ~OleConverter_Impl2(); @@ -214,7 +214,7 @@ class OleClient_Impl : public WeakImplHelper<XMultiServiceFactory, css::lang::XS public UnoConversionUtilities<OleClient_Impl> { public: - OleClient_Impl( const Reference<XMultiServiceFactory>& smgr); + explicit OleClient_Impl( const Reference<XMultiServiceFactory>& smgr); ~OleClient_Impl(); // XMultiServiceFactory @@ -253,7 +253,7 @@ protected: class OleServer_Impl : public cppu::WeakImplHelper<css::lang::XServiceInfo> { public: - OleServer_Impl( const Reference<XMultiServiceFactory> &smgr); + explicit OleServer_Impl( const Reference<XMultiServiceFactory> &smgr); ~OleServer_Impl(); OUString SAL_CALL getImplementationName() |