diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-09-15 14:28:08 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-09-15 18:58:17 +0200 |
commit | afea504ad44f017f7020ed6dcc0191f7756acc93 (patch) | |
tree | 82ee390592c54f5167c53133d14edc50fa90719f /vcl/inc/unx | |
parent | fbb9a98a78a349aef7b69d29a7534fd35ff1aa53 (diff) |
loplugin:finalclasses
Change-Id: I88831f290e1923db6fb5a733746bfa3bc7fbc7e8
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/122148
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/inc/unx')
-rw-r--r-- | vcl/inc/unx/saldisp.hxx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/vcl/inc/unx/saldisp.hxx b/vcl/inc/unx/saldisp.hxx index 59d02f394da0..3ec499ff1ee5 100644 --- a/vcl/inc/unx/saldisp.hxx +++ b/vcl/inc/unx/saldisp.hxx @@ -178,23 +178,23 @@ protected: public: SalXLib(); - virtual ~SalXLib(); - virtual void Init(); + ~SalXLib(); + void Init(); - virtual bool Yield( bool bWait, bool bHandleAllCurrentEvents ); - virtual void Wakeup(); + bool Yield( bool bWait, bool bHandleAllCurrentEvents ); + void Wakeup(); void TriggerUserEventProcessing(); - virtual void Insert( int fd, void* data, + void Insert( int fd, void* data, YieldFunc pending, YieldFunc queued, YieldFunc handle ); - virtual void Remove( int fd ); + void Remove( int fd ); - virtual void StartTimer( sal_uInt64 nMS ); - virtual void StopTimer(); + void StartTimer( sal_uInt64 nMS ); + void StopTimer(); - virtual bool CheckTimeout( bool bExecuteTimers = true ); + bool CheckTimeout( bool bExecuteTimers = true ); SalI18N_InputMethod* GetInputMethod() const { return m_pInputMethod.get(); } Display* GetDisplay() const { return m_pDisplay; } |