summaryrefslogtreecommitdiff
path: root/include/comphelper
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-05-16 10:11:04 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-05-18 10:03:44 +0000
commit2c8fe2e737b84ecd3dbac36a4fe6bd061bbd3bae (patch)
tree66ba7ff0b95cf5ceeda5e53294a71c6786460eb3 /include/comphelper
parent4e59eecc077d27dd9762e7c890b2aaf92a212959 (diff)
update unusedmethods plugin to deal with constructors
and fix the operator< implementations in some of the other plugins too. Change-Id: Ie5631e0cdc8d2a994ad2af2533cdb558a6cfc035 Reviewed-on: https://gerrit.libreoffice.org/25057 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/comphelper')
-rw-r--r--include/comphelper/anycompare.hxx3
-rw-r--r--include/comphelper/componentmodule.hxx8
-rw-r--r--include/comphelper/embeddedobjectcontainer.hxx1
-rw-r--r--include/comphelper/interaction.hxx4
-rw-r--r--include/comphelper/servicedecl.hxx4
5 files changed, 0 insertions, 20 deletions
diff --git a/include/comphelper/anycompare.hxx b/include/comphelper/anycompare.hxx
index 5be23c9082cf..c115658c145c 100644
--- a/include/comphelper/anycompare.hxx
+++ b/include/comphelper/anycompare.hxx
@@ -61,9 +61,6 @@ namespace comphelper
private:
IKeyPredicateLess const & m_predicate;
-
- private:
- LessPredicateAdapter(); // never implemented
};
diff --git a/include/comphelper/componentmodule.hxx b/include/comphelper/componentmodule.hxx
index 4c0f8a3e4742..235705564c08 100644
--- a/include/comphelper/componentmodule.hxx
+++ b/include/comphelper/componentmodule.hxx
@@ -60,14 +60,6 @@ namespace comphelper
/// the function to create a factory for the component (usually <code>::cppu::createSingleComponentFactory</code>)
FactoryInstantiation pFactoryCreationFunc;
- ComponentDescription()
- :sImplementationName()
- ,aSupportedServices()
- ,pComponentCreationFunc( nullptr )
- ,pFactoryCreationFunc( nullptr )
- {
- }
-
ComponentDescription(
const OUString& _rImplementationName,
const css::uno::Sequence< OUString >& _rSupportedServices,
diff --git a/include/comphelper/embeddedobjectcontainer.hxx b/include/comphelper/embeddedobjectcontainer.hxx
index 27992e1b4002..52dfac39c83f 100644
--- a/include/comphelper/embeddedobjectcontainer.hxx
+++ b/include/comphelper/embeddedobjectcontainer.hxx
@@ -144,7 +144,6 @@ public:
bool MoveEmbeddedObject( const OUString& rName, EmbeddedObjectContainer& );
// get the stored representation for the object
- css::uno::Reference < css::io::XInputStream > GetObjectStream( const css::uno::Reference < css::embed::XEmbeddedObject >& );
css::uno::Reference < css::io::XInputStream > GetObjectStream( const OUString& aName, OUString* pMediaType );
// get the stored graphical representation for the object
diff --git a/include/comphelper/interaction.hxx b/include/comphelper/interaction.hxx
index 85bf5e966a08..0dc42980786c 100644
--- a/include/comphelper/interaction.hxx
+++ b/include/comphelper/interaction.hxx
@@ -90,10 +90,6 @@ namespace comphelper
class COMPHELPER_DLLPUBLIC OInteractionPassword : public OInteraction< css::task::XInteractionPassword >
{
public:
- OInteractionPassword()
- {
- }
-
OInteractionPassword( const OUString& _rInitialPassword )
:m_sPassword( _rInitialPassword )
{
diff --git a/include/comphelper/servicedecl.hxx b/include/comphelper/servicedecl.hxx
index 077d38e714f4..5fece98d9e25 100644
--- a/include/comphelper/servicedecl.hxx
+++ b/include/comphelper/servicedecl.hxx
@@ -207,10 +207,6 @@ public:
css::uno::Sequence<css::uno::Any> const& args,
css::uno::Reference<css::uno::XComponentContext> const& xContext )
: ServiceImpl_BASE(rServiceDecl, args, xContext) {}
- InheritingServiceImpl(
- ServiceDecl const& rServiceDecl,
- css::uno::Reference<css::uno::XComponentContext> const& xContext )
- : ServiceImpl_BASE(rServiceDecl, xContext) {}
};
template <typename ServiceImplT>