diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-01-11 13:06:23 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-01-11 13:17:09 +0100 |
commit | 9f2e50408f724c2b8a2b13e322325b6d535d1477 (patch) | |
tree | 30b744a977c4cc62f91102e2c25245e5ed05df58 | |
parent | 8ee94bfb1d3cb16e533dbed3cc4a03fafa9062df (diff) |
loplugin:privatebase: Make derivation from Timer explicitly private
Change-Id: I5c3bcd19bb63f78c8d06961d39b0932220cb3762
-rw-r--r-- | include/vcl/debugevent.hxx | 2 | ||||
-rw-r--r-- | sc/source/filter/oox/workbookfragment.cxx | 2 | ||||
-rw-r--r-- | sd/source/ui/remotecontrol/ImagePreparer.hxx | 2 | ||||
-rw-r--r-- | sd/source/ui/remotecontrol/Receiver.hxx | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/include/vcl/debugevent.hxx b/include/vcl/debugevent.hxx index 8cde5ef3b4a1..a4331adc4d87 100644 --- a/include/vcl/debugevent.hxx +++ b/include/vcl/debugevent.hxx @@ -17,7 +17,7 @@ #include <sal/types.h> #include <vcl/window.hxx> -class VCL_DLLPUBLIC DebugEventInjector : Timer { +class VCL_DLLPUBLIC DebugEventInjector : private Timer { sal_uInt32 mnEventsLeft; DebugEventInjector( sal_uInt32 nMaxEvents ); diff --git a/sc/source/filter/oox/workbookfragment.cxx b/sc/source/filter/oox/workbookfragment.cxx index 4bb9522dd21c..5ef4b544b9cb 100644 --- a/sc/source/filter/oox/workbookfragment.cxx +++ b/sc/source/filter/oox/workbookfragment.cxx @@ -253,7 +253,7 @@ public: } }; -class ProgressBarTimer : Timer +class ProgressBarTimer : private Timer { // FIXME: really we should unify all sheet loading // progress reporting into something pleasant. 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: |