summaryrefslogtreecommitdiff
path: root/vcl/inc/generic/gendisp.hxx
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2014-02-28 15:38:15 +0200
committerTor Lillqvist <tml@collabora.com>2014-02-28 15:48:49 +0200
commit69a7d9aea25240ababb298e5b8a89d2492057ca6 (patch)
tree90a4e7661b2dc5f01f7d9c7e2707b0d405ba3553 /vcl/inc/generic/gendisp.hxx
parent3d66457b0b64660815b1c52698cd9dd92726d044 (diff)
Unvirtualize a couple of functions
Change-Id: I1df9d7d1f0186a6983e54906c2d1b1684663826d
Diffstat (limited to 'vcl/inc/generic/gendisp.hxx')
-rw-r--r--vcl/inc/generic/gendisp.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/vcl/inc/generic/gendisp.hxx b/vcl/inc/generic/gendisp.hxx
index 4aa5f356e2cf..2c5b5ec11a0d 100644
--- a/vcl/inc/generic/gendisp.hxx
+++ b/vcl/inc/generic/gendisp.hxx
@@ -56,17 +56,17 @@ public:
inline void EventGuardAcquire() { osl_acquireMutex( m_aEventGuard ); }
inline void EventGuardRelease() { osl_releaseMutex( m_aEventGuard ); }
- virtual void registerFrame( SalFrame* pFrame );
+ void registerFrame( SalFrame* pFrame );
virtual void deregisterFrame( SalFrame* pFrame );
- void emitDisplayChanged();
+ void emitDisplayChanged();
// Event handling
virtual void PostUserEvent() = 0;
- virtual void SendInternalEvent( SalFrame* pFrame, void* pData, sal_uInt16 nEvent = SALEVENT_USEREVENT );
- virtual void CancelInternalEvent( SalFrame* pFrame, void* pData, sal_uInt16 nEvent );
- virtual bool DispatchInternalEvent();
- bool HasUserEvents() const;
+ void SendInternalEvent( SalFrame* pFrame, void* pData, sal_uInt16 nEvent = SALEVENT_USEREVENT );
+ void CancelInternalEvent( SalFrame* pFrame, void* pData, sal_uInt16 nEvent );
+ bool DispatchInternalEvent();
+ bool HasUserEvents() const;
bool MouseCaptured( const SalFrame *pFrameData ) const
{ return m_pCapture == pFrameData; }