summaryrefslogtreecommitdiff
path: root/sdext
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-01-11 12:48:52 +0100
committerStephan Bergmann <sbergman@redhat.com>2016-01-11 13:17:07 +0100
commit9ff5abf2e17e1f482a608c8c4a76b563fe8fe7e3 (patch)
treee074150783b29e3e8a884c2be93d15389f514c92 /sdext
parentea5b48e9da1ea750cc4549f7cd76771800101ed2 (diff)
loplugin:privatebase: Make derivation from noncopyable explicitly private
Change-Id: Ia410950353aec0106ea82d025ed3ee89c79ca127
Diffstat (limited to 'sdext')
-rw-r--r--sdext/source/presenter/PresenterCanvasHelper.hxx2
-rw-r--r--sdext/source/presenter/PresenterSlideSorter.cxx2
-rw-r--r--sdext/source/presenter/PresenterUIPainter.hxx2
3 files changed, 3 insertions, 3 deletions
diff --git a/sdext/source/presenter/PresenterCanvasHelper.hxx b/sdext/source/presenter/PresenterCanvasHelper.hxx
index 35a813e95532..5b66623f8f4c 100644
--- a/sdext/source/presenter/PresenterCanvasHelper.hxx
+++ b/sdext/source/presenter/PresenterCanvasHelper.hxx
@@ -35,7 +35,7 @@ namespace sdext { namespace presenter {
/** Collection of functions to ease the life of a canvas user.
*/
class PresenterCanvasHelper
- : ::boost::noncopyable
+ : private ::boost::noncopyable
{
public:
PresenterCanvasHelper();
diff --git a/sdext/source/presenter/PresenterSlideSorter.cxx b/sdext/source/presenter/PresenterSlideSorter.cxx
index ad7d6a4b4903..1df8d94b322b 100644
--- a/sdext/source/presenter/PresenterSlideSorter.cxx
+++ b/sdext/source/presenter/PresenterSlideSorter.cxx
@@ -135,7 +135,7 @@ private:
//==== PresenterSlideSorter::MouseOverManager =================================
class PresenterSlideSorter::MouseOverManager
- : ::boost::noncopyable
+ : private ::boost::noncopyable
{
public:
MouseOverManager (
diff --git a/sdext/source/presenter/PresenterUIPainter.hxx b/sdext/source/presenter/PresenterUIPainter.hxx
index c1461489817a..df1bf1177c3b 100644
--- a/sdext/source/presenter/PresenterUIPainter.hxx
+++ b/sdext/source/presenter/PresenterUIPainter.hxx
@@ -31,7 +31,7 @@ namespace sdext { namespace presenter {
/** Functions for painting UI elements.
*/
class PresenterUIPainter
- : ::boost::noncopyable
+ : private ::boost::noncopyable
{
public:
PresenterUIPainter();