loplugin:privatebase: Make derivation from Timer explicitly private
Change-Id: I5c3bcd19bb63f78c8d06961d39b0932220cb3762
This commit is contained in:
parent
8ee94bfb1d
commit
9f2e50408f
4 changed files with 4 additions and 4 deletions
|
@ -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 );
|
||||
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
namespace sd
|
||||
{
|
||||
|
||||
class ImagePreparer : Timer
|
||||
class ImagePreparer : private Timer
|
||||
{
|
||||
sal_uInt32 mnSendingSlide;
|
||||
public:
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue