summaryrefslogtreecommitdiffstats
path: root/cppuhelper/qa
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-06-08 20:53:33 +0100
committerCaolán McNamara <caolanm@redhat.com>2015-06-09 10:34:00 +0100
commitad62165065a0f96933d8b491770775bb57ac51bd (patch)
treebe8f806481f96756bc33d9414640b31dd1e84f5f /cppuhelper/qa
parentcppcheck: variableScope (diff)
downloadcore-ad62165065a0f96933d8b491770775bb57ac51bd.tar.gz
core-ad62165065a0f96933d8b491770775bb57ac51bd.zip
cppcheck: noExplicitConstructor
Change-Id: Ic33ee6936f40bec4f3a82aea39a180ae6e9a0928
Diffstat (limited to 'cppuhelper/qa')
-rw-r--r--cppuhelper/qa/ifcontainer/cppu_ifcontainer.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/cppuhelper/qa/ifcontainer/cppu_ifcontainer.cxx b/cppuhelper/qa/ifcontainer/cppu_ifcontainer.cxx
index 6c1870fa5cca..ff7c7925276c 100644
--- a/cppuhelper/qa/ifcontainer/cppu_ifcontainer.cxx
+++ b/cppuhelper/qa/ifcontainer/cppu_ifcontainer.cxx
@@ -46,7 +46,7 @@ class ContainerListener : public ::cppu::WeakImplHelper1< XEventListener >
{
ContainerStats *m_pStats;
public:
- ContainerListener(ContainerStats *pStats)
+ explicit ContainerListener(ContainerStats *pStats)
: m_pStats(pStats) { m_pStats->m_nAlive++; }
virtual ~ContainerListener() { m_pStats->m_nAlive--; }
virtual void SAL_CALL disposing( const EventObject& )