summaryrefslogtreecommitdiff
path: root/sd/source/ui/remotecontrol
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-01-11 13:06:23 +0100
committerStephan Bergmann <sbergman@redhat.com>2016-01-11 13:17:09 +0100
commit9f2e50408f724c2b8a2b13e322325b6d535d1477 (patch)
tree30b744a977c4cc62f91102e2c25245e5ed05df58 /sd/source/ui/remotecontrol
parent8ee94bfb1d3cb16e533dbed3cc4a03fafa9062df (diff)
loplugin:privatebase: Make derivation from Timer explicitly private
Change-Id: I5c3bcd19bb63f78c8d06961d39b0932220cb3762
Diffstat (limited to 'sd/source/ui/remotecontrol')
-rw-r--r--sd/source/ui/remotecontrol/ImagePreparer.hxx2
-rw-r--r--sd/source/ui/remotecontrol/Receiver.hxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/remotecontrol/ImagePreparer.hxx b/sd/source/ui/remotecontrol/ImagePreparer.hxx
index deb3a03bf02c..cb7f5bb112a5 100644
--- a/sd/source/ui/remotecontrol/ImagePreparer.hxx
+++ b/sd/source/ui/remotecontrol/ImagePreparer.hxx
@@ -18,7 +18,7 @@
namespace sd
{
-class ImagePreparer : Timer
+class ImagePreparer : private Timer
{
sal_uInt32 mnSendingSlide;
public:
diff --git a/sd/source/ui/remotecontrol/Receiver.hxx b/sd/source/ui/remotecontrol/Receiver.hxx
index 99d8a2f366e5..d43b5af4610f 100644
--- a/sd/source/ui/remotecontrol/Receiver.hxx
+++ b/sd/source/ui/remotecontrol/Receiver.hxx
@@ -27,7 +27,7 @@ namespace sd
{
// Timer is protected by the solar mutex => so are we.
-class Receiver : Timer
+class Receiver : private Timer
{
std::deque< std::vector< OString > > maExecQueue;
public: