diff options
author | Zolnai Tamás <tamas.zolnai@collabora.com> | 2014-01-09 15:36:47 +0100 |
---|---|---|
committer | Zolnai Tamás <tamas.zolnai@collabora.com> | 2014-01-09 15:43:29 +0100 |
commit | a1638c81d06330b514d18af0b0a3e84607b110c1 (patch) | |
tree | d53853a455a499015b990c31882f7ea2fec21b54 /sfx2 | |
parent | 0314034d8b23d5b69399cfcdf6b2f2add73f9f47 (diff) |
Remove unused private member: pAccExec
Change-Id: Ie21f8a62213954da7f66c1fbe890ba9dee93cf77
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/inc/inettbc.hxx | 1 | ||||
-rw-r--r-- | sfx2/source/inet/inettbc.cxx | 4 |
2 files changed, 1 insertions, 4 deletions
diff --git a/sfx2/inc/inettbc.hxx b/sfx2/inc/inettbc.hxx index 464bf8238606..1038c6854345 100644 --- a/sfx2/inc/inettbc.hxx +++ b/sfx2/inc/inettbc.hxx @@ -30,7 +30,6 @@ class SvtURLBox; class SfxURLToolBoxControl_Impl : public SfxToolBoxControl { private: - ::svt::AcceleratorExecute* pAccExec; SvtURLBox* GetURLBox() const; void OpenURL( const OUString& rName, sal_Bool bNew ) const; diff --git a/sfx2/source/inet/inettbc.cxx b/sfx2/source/inet/inettbc.cxx index eb6de6adb57a..af7afe18f9b7 100644 --- a/sfx2/source/inet/inettbc.cxx +++ b/sfx2/source/inet/inettbc.cxx @@ -62,15 +62,13 @@ using namespace ::com::sun::star::task; SFX_IMPL_TOOLBOX_CONTROL(SfxURLToolBoxControl_Impl,SfxStringItem) SfxURLToolBoxControl_Impl::SfxURLToolBoxControl_Impl( sal_uInt16 nSlotId, sal_uInt16 nId, ToolBox& rBox ) - : SfxToolBoxControl( nSlotId, nId, rBox ), - pAccExec( 0 ) + : SfxToolBoxControl( nSlotId, nId, rBox ) { addStatusListener( OUString( ".uno:CurrentURL" )); } SfxURLToolBoxControl_Impl::~SfxURLToolBoxControl_Impl() { - delete pAccExec; } SvtURLBox* SfxURLToolBoxControl_Impl::GetURLBox() const |