diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2015-05-15 16:59:33 +0900 |
---|---|---|
committer | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2015-05-15 17:10:24 +0900 |
commit | 3bc76133106325e211b7e02c996dd6d040ca7354 (patch) | |
tree | c2a55139166dbff4029b03d24556dd304d3ce44d | |
parent | adce48ab274285e9a8eb546b233db1c1e5a39537 (diff) |
cleanup MyWin
Change-Id: I6b9606c6d1397cfe919a7a6c1922423fb8b68d5c
-rw-r--r-- | svx/workben/pixelctl.cxx | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/svx/workben/pixelctl.cxx b/svx/workben/pixelctl.cxx index 0ce3dca53c5a..127b1be4a83a 100644 --- a/svx/workben/pixelctl.cxx +++ b/svx/workben/pixelctl.cxx @@ -82,18 +82,20 @@ class MyWin : public WorkWindow VclPtr<SvxPixelCtl> maPixelCtl; public: - MyWin( vcl::Window* pParent, WinBits nWinStyle ); - virtual ~MyWin() { disposeOnce(); } + MyWin(vcl::Window* pParent, WinBits nWinStyle); + virtual ~MyWin() + { + disposeOnce(); + } virtual void dispose() SAL_OVERRIDE; - void MouseMove( const MouseEvent& rMEvt ) SAL_OVERRIDE; - void MouseButtonDown( const MouseEvent& rMEvt ) SAL_OVERRIDE; - void MouseButtonUp( const MouseEvent& rMEvt ) SAL_OVERRIDE; - void KeyInput( const KeyEvent& rKEvt ) SAL_OVERRIDE; - void KeyUp( const KeyEvent& rKEvt ) SAL_OVERRIDE; - void Paint( vcl::RenderContext& /*rRenderContext*/, const Rectangle& rRect ) SAL_OVERRIDE; - void Resize() SAL_OVERRIDE; - - bool Close() SAL_OVERRIDE; + void MouseMove( const MouseEvent& rMEvt ) SAL_OVERRIDE; + void MouseButtonDown( const MouseEvent& rMEvt ) SAL_OVERRIDE; + void MouseButtonUp( const MouseEvent& rMEvt ) SAL_OVERRIDE; + void KeyInput( const KeyEvent& rKEvt ) SAL_OVERRIDE; + void KeyUp( const KeyEvent& rKEvt ) SAL_OVERRIDE; + void Paint(vcl::RenderContext& rRenderContext, const Rectangle& rRect) SAL_OVERRIDE; + void Resize() SAL_OVERRIDE; + bool Close() SAL_OVERRIDE; }; void Main() |