From fbe6619a34b617a04a5135e40c70a172a44eefef Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 13 Jan 2015 14:50:19 +0200 Subject: vcl: VclPtr conversion in sfx2 Change-Id: I78ea3f4304ace27c6db0e3d0651bd65043dcbc68 --- sfx2/inc/srchdlg.hxx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'sfx2/inc') diff --git a/sfx2/inc/srchdlg.hxx b/sfx2/inc/srchdlg.hxx index 95b7a00c8ada..b5abe7b576a8 100644 --- a/sfx2/inc/srchdlg.hxx +++ b/sfx2/inc/srchdlg.hxx @@ -59,6 +59,7 @@ private: public: SearchDialog( vcl::Window* pWindow, const OUString& rConfigName ); virtual ~SearchDialog(); + virtual void dispose() SAL_OVERRIDE; void SetFindHdl( const Link& rLink ) { m_aFindHdl = rLink; } void SetCloseHdl( const Link& rLink ) { m_aCloseHdl = rLink; } @@ -70,11 +71,11 @@ public: bool IsWrapAround() const { return ( m_pWrapAroundBox->IsChecked() ); } bool IsSearchBackwards() const { return ( m_pBackwardsBox->IsChecked() ); } - void SetFocusOnEdit(); + void SetFocusOnEdit(); virtual bool Close() SAL_OVERRIDE; - virtual void Move() SAL_OVERRIDE; - virtual void StateChanged( StateChangedType nStateChange ) SAL_OVERRIDE; + virtual void Move() SAL_OVERRIDE; + virtual void StateChanged( StateChangedType nStateChange ) SAL_OVERRIDE; }; -- cgit