summaryrefslogtreecommitdiff
path: root/cui
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-03-07 08:52:34 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-03-07 10:22:17 +0000
commitf4f2ba8dd15fde198556d37cd0e1577b84985282 (patch)
treeb6e60265ba2441b8cd7a9b46ba2e91ea42b2acae /cui
parent3ef2725a8d9a15b585066e43384788a79fb4aef6 (diff)
callcatcher: update unused code
Change-Id: I6487e6ede0a50d88a4f8c3d3b07bdad2603aa4b4
Diffstat (limited to 'cui')
-rw-r--r--cui/source/customize/cfgutil.cxx22
-rw-r--r--cui/source/inc/cfgutil.hxx2
2 files changed, 0 insertions, 24 deletions
diff --git a/cui/source/customize/cfgutil.cxx b/cui/source/customize/cfgutil.cxx
index 33b213b46688..a4cec40fb6e3 100644
--- a/cui/source/customize/cfgutil.cxx
+++ b/cui/source/customize/cfgutil.cxx
@@ -249,20 +249,6 @@ void SfxStylesInfo_Impl::getLabel4Style(SfxStyleInfo_Impl& aStyle)
return lStyles;
}
-SfxConfigFunctionListBox::SfxConfigFunctionListBox(Window* pParent, const ResId& rResId)
- : SvTreeListBox( pParent, rResId )
- , pCurEntry( 0 )
- , pStylesInfo( 0 )
-{
- SetStyle( GetStyle() | WB_CLIPCHILDREN | WB_HSCROLL | WB_SORT );
- GetModel()->SetSortMode( SortAscending );
-
- // Timer for the BallonHelp
- aTimer.SetTimeout( 200 );
- aTimer.SetTimeoutHdl(
- LINK( this, SfxConfigFunctionListBox, TimerHdl ) );
-}
-
SfxConfigFunctionListBox::SfxConfigFunctionListBox(Window* pParent, WinBits nStyle)
: SvTreeListBox( pParent, nStyle )
, pCurEntry( 0 )
@@ -424,14 +410,6 @@ SvxConfigGroupBoxResource_Impl::SvxConfigGroupBoxResource_Impl() :
FreeResource();
}
-SfxConfigGroupListBox::SfxConfigGroupListBox(Window* pParent, const ResId& rResId)
- : SvTreeListBox( pParent, rResId )
- , pImp(new SvxConfigGroupBoxResource_Impl()), pFunctionListBox(0), pStylesInfo(0)
-{
- SetStyle( GetStyle() | WB_CLIPCHILDREN | WB_HSCROLL | WB_HASBUTTONS | WB_HASLINES | WB_HASLINESATROOT | WB_HASBUTTONSATROOT );
- SetNodeBitmaps( pImp->m_collapsedImage, pImp->m_expandedImage );
-}
-
SfxConfigGroupListBox::SfxConfigGroupListBox(Window* pParent, WinBits nStyle)
: SvTreeListBox(pParent, nStyle)
, pImp(new SvxConfigGroupBoxResource_Impl()), pFunctionListBox(0), pStylesInfo(0)
diff --git a/cui/source/inc/cfgutil.hxx b/cui/source/inc/cfgutil.hxx
index 7dd355e30f4e..2bd263a71485 100644
--- a/cui/source/inc/cfgutil.hxx
+++ b/cui/source/inc/cfgutil.hxx
@@ -111,7 +111,6 @@ class SfxConfigFunctionListBox : public SvTreeListBox
virtual void MouseMove( const MouseEvent& rMEvt );
public:
- SfxConfigFunctionListBox(Window*, const ResId&);
SfxConfigFunctionListBox(Window*, WinBits nStyle);
~SfxConfigFunctionListBox();
@@ -164,7 +163,6 @@ protected:
virtual sal_Bool Expand( SvTreeListEntry* pParent );
public:
- SfxConfigGroupListBox(Window* pParent, const ResId&);
SfxConfigGroupListBox(Window* pParent, WinBits nStyle);
~SfxConfigGroupListBox();
void ClearAll();