loplugin:privatebase: Make derivation from Timer explicitly private

Change-Id: I5c3bcd19bb63f78c8d06961d39b0932220cb3762
This commit is contained in:
Stephan Bergmann 2016-01-11 13:06:23 +01:00
parent 8ee94bfb1d
commit 9f2e50408f
4 changed files with 4 additions and 4 deletions

View file

@ -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 );

View file

@ -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.

View file

@ -18,7 +18,7 @@
namespace sd
{
class ImagePreparer : Timer
class ImagePreparer : private Timer
{
sal_uInt32 mnSendingSlide;
public:

View file

@ -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: