summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorTomaž Vajngerl <tomaz.vajngerl@collabora.co.uk>2015-05-15 16:59:33 +0900
committerTomaž Vajngerl <tomaz.vajngerl@collabora.co.uk>2015-05-15 17:10:24 +0900
commit3bc76133106325e211b7e02c996dd6d040ca7354 (patch)
treec2a55139166dbff4029b03d24556dd304d3ce44d /svx
parentadce48ab274285e9a8eb546b233db1c1e5a39537 (diff)
cleanup MyWin
Change-Id: I6b9606c6d1397cfe919a7a6c1922423fb8b68d5c
Diffstat (limited to 'svx')
-rw-r--r--svx/workben/pixelctl.cxx24
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()