summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-10-18 20:56:40 +0100
committerCaolán McNamara <caolanm@redhat.com>2015-10-18 21:23:15 +0100
commite08b49fa663ea50c4e712618bc1059249b7d35ba (patch)
treea70acf085a626958e5f8f5f1dc2795e4366464b8
parent476bef70f1d9fd58b29a1f6fb95e54567b031acf (diff)
cppcheck: noExplicitConstructor
Change-Id: I187273e39759b3a3ef45b047f8cc36829a7f0b10
-rw-r--r--sd/source/ui/slidesorter/view/SlideSorterView.cxx4
-rw-r--r--sd/source/ui/slidesorter/view/SlsFramePainter.hxx2
-rw-r--r--sd/source/ui/slidesorter/view/SlsInsertAnimator.cxx2
-rw-r--r--sd/source/ui/slidesorter/view/SlsLayeredDevice.hxx2
-rw-r--r--sd/source/ui/slidesorter/view/SlsResource.hxx2
-rw-r--r--sd/source/ui/slidesorter/view/SlsViewCacheContext.hxx2
-rw-r--r--sd/source/ui/tools/EventMultiplexer.cxx2
-rw-r--r--sd/source/ui/unoidl/UnoDocumentSettings.cxx2
-rw-r--r--sd/source/ui/unoidl/randomnode.cxx2
-rw-r--r--sd/source/ui/unoidl/unocpres.hxx2
-rw-r--r--sd/source/ui/unoidl/unolayer.hxx2
-rw-r--r--sd/source/ui/unoidl/unomodel.cxx2
-rw-r--r--sd/source/ui/unoidl/unomodule.hxx6
-rw-r--r--sd/source/ui/unoidl/unopage.cxx2
-rw-r--r--sd/source/ui/unoidl/unopool.cxx4
-rw-r--r--sd/source/ui/view/DocumentRenderer.cxx2
-rw-r--r--sd/source/ui/view/ToolBarManager.cxx4
-rw-r--r--sd/source/ui/view/ViewShellManager.cxx6
-rw-r--r--sd/source/ui/view/drviews1.cxx2
-rw-r--r--sw/source/core/inc/frame.hxx2
20 files changed, 27 insertions, 27 deletions
diff --git a/sd/source/ui/slidesorter/view/SlideSorterView.cxx b/sd/source/ui/slidesorter/view/SlideSorterView.cxx
index 24e56978fb68..f6f96e0fad17 100644
--- a/sd/source/ui/slidesorter/view/SlideSorterView.cxx
+++ b/sd/source/ui/slidesorter/view/SlideSorterView.cxx
@@ -89,7 +89,7 @@ namespace {
class Painter : public ILayerPainter
{
public:
- Painter (SlideSorterView& rView) : mrView(rView) {}
+ explicit Painter (SlideSorterView& rView) : mrView(rView) {}
virtual ~Painter() {}
virtual void Paint (OutputDevice& rDevice, const Rectangle& rRepaintArea) override
@@ -109,7 +109,7 @@ class BackgroundPainter
public ::boost::noncopyable
{
public:
- BackgroundPainter (const Color& rBackgroundColor) : maBackgroundColor(rBackgroundColor) {}
+ explicit BackgroundPainter (const Color& rBackgroundColor) : maBackgroundColor(rBackgroundColor) {}
virtual ~BackgroundPainter() {}
virtual void Paint (OutputDevice& rDevice, const Rectangle& rRepaintArea) override
diff --git a/sd/source/ui/slidesorter/view/SlsFramePainter.hxx b/sd/source/ui/slidesorter/view/SlsFramePainter.hxx
index cc3a93cd17cb..614ec0a70577 100644
--- a/sd/source/ui/slidesorter/view/SlsFramePainter.hxx
+++ b/sd/source/ui/slidesorter/view/SlsFramePainter.hxx
@@ -27,7 +27,7 @@ namespace sd { namespace slidesorter { namespace view {
class FramePainter
{
public:
- FramePainter (const BitmapEx& rBitmap);
+ explicit FramePainter (const BitmapEx& rBitmap);
~FramePainter();
/** Paint a border around the given box by using a set of bitmaps for
diff --git a/sd/source/ui/slidesorter/view/SlsInsertAnimator.cxx b/sd/source/ui/slidesorter/view/SlsInsertAnimator.cxx
index 98dd95b2b37f..c5d118635060 100644
--- a/sd/source/ui/slidesorter/view/SlsInsertAnimator.cxx
+++ b/sd/source/ui/slidesorter/view/SlsInsertAnimator.cxx
@@ -115,7 +115,7 @@ Point Blend (const Point& rPointA, const Point& rPointB, const double nT)
class InsertAnimator::Implementation : public AnimatorAccess
{
public:
- Implementation (SlideSorter& rSlideSorter);
+ explicit Implementation (SlideSorter& rSlideSorter);
virtual ~Implementation();
void SetInsertPosition (
diff --git a/sd/source/ui/slidesorter/view/SlsLayeredDevice.hxx b/sd/source/ui/slidesorter/view/SlsLayeredDevice.hxx
index 989dadb545cf..0a6ac661cb9d 100644
--- a/sd/source/ui/slidesorter/view/SlsLayeredDevice.hxx
+++ b/sd/source/ui/slidesorter/view/SlsLayeredDevice.hxx
@@ -43,7 +43,7 @@ class LayeredDevice
{
public:
- LayeredDevice (VclPtr<sd::Window> pTargetWindow);
+ explicit LayeredDevice (VclPtr<sd::Window> pTargetWindow);
~LayeredDevice ();
void Invalidate (
diff --git a/sd/source/ui/slidesorter/view/SlsResource.hxx b/sd/source/ui/slidesorter/view/SlsResource.hxx
index 6695c00fc322..e1d642639b44 100644
--- a/sd/source/ui/slidesorter/view/SlsResource.hxx
+++ b/sd/source/ui/slidesorter/view/SlsResource.hxx
@@ -29,7 +29,7 @@ namespace sd { namespace slidesorter { namespace view {
class LocalResource : public Resource
{
public:
- LocalResource (const sal_uInt16 nResourceId) : Resource(SdResId(nResourceId)){}
+ explicit LocalResource (const sal_uInt16 nResourceId) : Resource(SdResId(nResourceId)){}
~LocalResource() { FreeResource(); }
};
diff --git a/sd/source/ui/slidesorter/view/SlsViewCacheContext.hxx b/sd/source/ui/slidesorter/view/SlsViewCacheContext.hxx
index 5b05190f6e48..fe994e5710e9 100644
--- a/sd/source/ui/slidesorter/view/SlsViewCacheContext.hxx
+++ b/sd/source/ui/slidesorter/view/SlsViewCacheContext.hxx
@@ -39,7 +39,7 @@ namespace sd { namespace slidesorter { namespace view {
class ViewCacheContext : public cache::CacheContext
{
public:
- ViewCacheContext (SlideSorter& rSlideSorter);
+ explicit ViewCacheContext (SlideSorter& rSlideSorter);
virtual ~ViewCacheContext();
virtual void NotifyPreviewCreation (cache::CacheKey aKey, const Bitmap& rPreview) override;
virtual bool IsIdle() override;
diff --git a/sd/source/ui/tools/EventMultiplexer.cxx b/sd/source/ui/tools/EventMultiplexer.cxx
index 466428d30fb4..13e8360c1ce0 100644
--- a/sd/source/ui/tools/EventMultiplexer.cxx
+++ b/sd/source/ui/tools/EventMultiplexer.cxx
@@ -64,7 +64,7 @@ class EventMultiplexer::Implementation
public SfxListener
{
public:
- Implementation (ViewShellBase& rBase);
+ explicit Implementation (ViewShellBase& rBase);
virtual ~Implementation();
void AddEventListener (
diff --git a/sd/source/ui/unoidl/UnoDocumentSettings.cxx b/sd/source/ui/unoidl/UnoDocumentSettings.cxx
index 675050af003d..cc7680e825e4 100644
--- a/sd/source/ui/unoidl/UnoDocumentSettings.cxx
+++ b/sd/source/ui/unoidl/UnoDocumentSettings.cxx
@@ -71,7 +71,7 @@ namespace sd
public DocumentSettingsSerializer
{
public:
- DocumentSettings( SdXImpressDocument* pModel );
+ explicit DocumentSettings( SdXImpressDocument* pModel );
virtual ~DocumentSettings() throw();
// XInterface
diff --git a/sd/source/ui/unoidl/randomnode.cxx b/sd/source/ui/unoidl/randomnode.cxx
index 7e7b9ce73137..a9205183229e 100644
--- a/sd/source/ui/unoidl/randomnode.cxx
+++ b/sd/source/ui/unoidl/randomnode.cxx
@@ -72,7 +72,7 @@ class RandomAnimationNode : public RandomAnimationNodeBase
{
public:
RandomAnimationNode( const RandomAnimationNode& rNode );
- RandomAnimationNode( sal_Int16 nPresetClass );
+ explicit RandomAnimationNode( sal_Int16 nPresetClass );
RandomAnimationNode();
void init( sal_Int16 nPresetClass );
diff --git a/sd/source/ui/unoidl/unocpres.hxx b/sd/source/ui/unoidl/unocpres.hxx
index 569872cd1756..67ebea36dc53 100644
--- a/sd/source/ui/unoidl/unocpres.hxx
+++ b/sd/source/ui/unoidl/unocpres.hxx
@@ -111,7 +111,7 @@ private:
SdCustomShow * getSdCustomShow( const OUString& Name ) const throw();
public:
- SdXCustomPresentationAccess(SdXImpressDocument& rMyModel) throw();
+ explicit SdXCustomPresentationAccess(SdXImpressDocument& rMyModel) throw();
virtual ~SdXCustomPresentationAccess() throw();
// XServiceInfo
diff --git a/sd/source/ui/unoidl/unolayer.hxx b/sd/source/ui/unoidl/unolayer.hxx
index 3a8d454724b6..f977badf8127 100644
--- a/sd/source/ui/unoidl/unolayer.hxx
+++ b/sd/source/ui/unoidl/unolayer.hxx
@@ -115,7 +115,7 @@ class SdLayerManager : public ::cppu::WeakImplHelper< ::com::sun::star::drawing:
friend class SdLayer;
public:
- SdLayerManager( SdXImpressDocument& rMyModel ) throw();
+ explicit SdLayerManager( SdXImpressDocument& rMyModel ) throw();
virtual ~SdLayerManager() throw();
// uno helper
diff --git a/sd/source/ui/unoidl/unomodel.cxx b/sd/source/ui/unoidl/unomodel.cxx
index c9a729e08d59..434bf1a893c9 100644
--- a/sd/source/ui/unoidl/unomodel.cxx
+++ b/sd/source/ui/unoidl/unomodel.cxx
@@ -118,7 +118,7 @@ class SdUnoForbiddenCharsTable : public SvxUnoForbiddenCharsTable,
public SfxListener
{
public:
- SdUnoForbiddenCharsTable( SdrModel* pModel );
+ explicit SdUnoForbiddenCharsTable(SdrModel* pModel);
virtual ~SdUnoForbiddenCharsTable();
// SfxListener
diff --git a/sd/source/ui/unoidl/unomodule.hxx b/sd/source/ui/unoidl/unomodule.hxx
index 2f9f011ba348..63df6068cdf2 100644
--- a/sd/source/ui/unoidl/unomodule.hxx
+++ b/sd/source/ui/unoidl/unomodule.hxx
@@ -53,9 +53,9 @@ class SdUnoModule : public ::cppu::WeakImplHelper< css::frame::XDispatchProvider
css::uno::Reference < css::lang::XMultiServiceFactory > m_xFactory;
public:
- SdUnoModule( const css::uno::Reference < css::lang::XMultiServiceFactory >& xFactory )
- : m_xFactory( xFactory )
- {}
+ explicit SdUnoModule( const css::uno::Reference < css::lang::XMultiServiceFactory >& xFactory )
+ : m_xFactory( xFactory )
+ {}
// XnotifyingDispatch
virtual void SAL_CALL dispatchWithNotification( const css::util::URL& URL, const css::uno::Sequence< css::beans::PropertyValue >& Arguments, const css::uno::Reference< css::frame::XDispatchResultListener >& Listener )
diff --git a/sd/source/ui/unoidl/unopage.cxx b/sd/source/ui/unoidl/unopage.cxx
index 8be6a584a644..6261bb6bfe37 100644
--- a/sd/source/ui/unoidl/unopage.cxx
+++ b/sd/source/ui/unoidl/unopage.cxx
@@ -2613,7 +2613,7 @@ void SdGenericDrawPage::setNavigationOrder( const Any& rValue )
class SdNavigationOrderAccess : public ::cppu::WeakImplHelper< XIndexAccess >
{
public:
- SdNavigationOrderAccess( SdrPage* pPage );
+ explicit SdNavigationOrderAccess(SdrPage* pPage);
// XIndexAccess
virtual sal_Int32 SAL_CALL getCount( ) throw (RuntimeException, std::exception) override;
diff --git a/sd/source/ui/unoidl/unopool.cxx b/sd/source/ui/unoidl/unopool.cxx
index a2f57c0895a9..6ae35e5a8584 100644
--- a/sd/source/ui/unoidl/unopool.cxx
+++ b/sd/source/ui/unoidl/unopool.cxx
@@ -42,10 +42,10 @@ LanguageType SdUnoGetLanguage( const lang::Locale& rLocale )
return eRet;
}
-class SdUnoDrawPool : public SvxUnoDrawPool
+class SdUnoDrawPool : public SvxUnoDrawPool
{
public:
- SdUnoDrawPool( SdDrawDocument* pModel ) throw();
+ explicit SdUnoDrawPool(SdDrawDocument* pModel) throw();
virtual ~SdUnoDrawPool() throw();
protected:
diff --git a/sd/source/ui/view/DocumentRenderer.cxx b/sd/source/ui/view/DocumentRenderer.cxx
index 31b88b03e799..a92c3dfd4b91 100644
--- a/sd/source/ui/view/DocumentRenderer.cxx
+++ b/sd/source/ui/view/DocumentRenderer.cxx
@@ -1130,7 +1130,7 @@ class DocumentRenderer::Implementation
public vcl::PrinterOptionsHelper
{
public:
- Implementation (ViewShellBase& rBase)
+ explicit Implementation (ViewShellBase& rBase)
: mxObjectShell(rBase.GetDocShell())
, mrBase(rBase)
, mbIsDisposed(false)
diff --git a/sd/source/ui/view/ToolBarManager.cxx b/sd/source/ui/view/ToolBarManager.cxx
index 57ad96d3a59c..8058cff1de90 100644
--- a/sd/source/ui/view/ToolBarManager.cxx
+++ b/sd/source/ui/view/ToolBarManager.cxx
@@ -59,7 +59,7 @@ class ToolBarRules;
class LayouterLock
{
public:
- LayouterLock (const Reference<frame::XLayoutManager>& rxLayouter);
+ explicit LayouterLock (const Reference<frame::XLayoutManager>& rxLayouter);
~LayouterLock();
private:
Reference<frame::XLayoutManager> mxLayouter;
@@ -282,7 +282,7 @@ public:
class UpdateLockImplementation
{
public:
- UpdateLockImplementation (Implementation& rImplementation)
+ explicit UpdateLockImplementation (Implementation& rImplementation)
: mrImplementation(rImplementation) { mrImplementation.LockUpdate(); }
~UpdateLockImplementation() { mrImplementation.UnlockUpdate(); }
private:
diff --git a/sd/source/ui/view/ViewShellManager.cxx b/sd/source/ui/view/ViewShellManager.cxx
index 5c015b3abe7b..6b20957d2e9d 100644
--- a/sd/source/ui/view/ViewShellManager.cxx
+++ b/sd/source/ui/view/ViewShellManager.cxx
@@ -68,7 +68,7 @@ public:
class IsShell : public ::std::unary_function<ShellDescriptor,bool>
{
public:
- IsShell (const SfxShell* pShell) : mpShell(pShell) {}
+ explicit IsShell (const SfxShell* pShell) : mpShell(pShell) {}
bool operator() (const ShellDescriptor& rDescriptor)
{ return rDescriptor.mpShell == mpShell; }
private:
@@ -81,7 +81,7 @@ private:
class IsId : public ::std::unary_function<ShellDescriptor,bool>
{
public:
- IsId (ShellId nId) : mnId(nId) {}
+ explicit IsId (ShellId nId) : mnId(nId) {}
bool operator() (const ShellDescriptor& rDescriptor)
{ return rDescriptor.mnId == mnId; }
private:
@@ -128,7 +128,7 @@ public:
class UpdateLock
{
public:
- UpdateLock (Implementation& rImpl) : mrImpl(rImpl) {mrImpl.LockUpdate();}
+ explicit UpdateLock (Implementation& rImpl) : mrImpl(rImpl) {mrImpl.LockUpdate();}
~UpdateLock() {mrImpl.UnlockUpdate();};
private:
Implementation& mrImpl;
diff --git a/sd/source/ui/view/drviews1.cxx b/sd/source/ui/view/drviews1.cxx
index cf146aef2fd8..da93cdd91532 100644
--- a/sd/source/ui/view/drviews1.cxx
+++ b/sd/source/ui/view/drviews1.cxx
@@ -139,7 +139,7 @@ namespace
void Lock(bool bLock);
SfxViewFrame *mpFrame;
public:
- LockUI(SfxViewFrame *pFrame) : mpFrame(pFrame) { Lock(true); }
+ explicit LockUI(SfxViewFrame *pFrame) : mpFrame(pFrame) { Lock(true); }
~LockUI() { Lock(false); }
};
diff --git a/sw/source/core/inc/frame.hxx b/sw/source/core/inc/frame.hxx
index e6c245ee4d1c..5acb1f086394 100644
--- a/sw/source/core/inc/frame.hxx
+++ b/sw/source/core/inc/frame.hxx
@@ -1161,7 +1161,7 @@ public:
//Flag pFrm for SwFrmDeleteGuard lifetime that we shouldn't delete
//it in e.g. SwSectionFrm::MergeNext etc because we will need it
//again after the SwFrmDeleteGuard dtor
- SwFrmDeleteGuard(SwFrm* pFrm)
+ explicit SwFrmDeleteGuard(SwFrm* pFrm)
: m_pFrm(pFrm)
{
m_bOldDeleteAllowed = m_pFrm && !m_pFrm->IsDeleteForbidden();