summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-09-07 09:12:55 +0100
committerCaolán McNamara <caolanm@redhat.com>2015-09-07 09:56:07 +0100
commitb0f3024304bf4e7d9efcb539a49394945f052a51 (patch)
tree7d8a1a656f4d710dbeac848834c400f03a55d5d2 /sd
parent7ac8939cc8e7599cca3de27c8f8dc9fd9f2e2185 (diff)
cppcheck: noExplicitCopyMoveConstructor
Change-Id: I8718ddd144bec48541e6412a8c9feb74d9391ecc
Diffstat (limited to 'sd')
-rw-r--r--sd/source/ui/slidesorter/view/SlsLayouter.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sd/source/ui/slidesorter/view/SlsLayouter.cxx b/sd/source/ui/slidesorter/view/SlsLayouter.cxx
index 0f960e2e85c3..b63b307435e2 100644
--- a/sd/source/ui/slidesorter/view/SlsLayouter.cxx
+++ b/sd/source/ui/slidesorter/view/SlsLayouter.cxx
@@ -202,7 +202,7 @@ protected:
Implementation (
sd::Window *pWindow,
const ::boost::shared_ptr<view::Theme>& rpTheme);
- Implementation (const Implementation& rImplementation);
+ explicit Implementation (const Implementation& rImplementation);
virtual void CalculateRowAndColumnCount (const Size& rWindowSize) = 0;
virtual void CalculateMaxRowAndColumnCount (const Size& rWindowSize) = 0;
@@ -225,7 +225,7 @@ protected:
class VerticalImplementation : public Layouter::Implementation
{
public:
- VerticalImplementation (const Implementation& rImplementation);
+ explicit VerticalImplementation (const Implementation& rImplementation);
virtual Layouter::Orientation GetOrientation() const SAL_OVERRIDE;
@@ -247,7 +247,7 @@ protected:
class HorizontalImplementation : public Layouter::Implementation
{
public:
- HorizontalImplementation (const Implementation& rImplementation);
+ explicit HorizontalImplementation(const Implementation& rImplementation);
virtual Layouter::Orientation GetOrientation() const SAL_OVERRIDE;
@@ -273,7 +273,7 @@ public:
GridImplementation (
sd::Window *pWindow,
const ::boost::shared_ptr<view::Theme>& rpTheme);
- GridImplementation (const Implementation& rImplementation);
+ explicit GridImplementation(const Implementation& rImplementation);
virtual Layouter::Orientation GetOrientation() const SAL_OVERRIDE;