diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-01-23 12:08:58 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-01-23 14:11:00 +0000 |
commit | 272bc403e0803483e4f9d1d7b880b97e803d15b0 (patch) | |
tree | 70e5dbcdb28a1b976e4be03729caa353e0b09792 /cui/source/customize | |
parent | 22a8a96bc5e98c7171e225f4e59990f624b734cc (diff) |
rename SfxConfigFunctionListBox_Impl to SfxConfigFunctionListBox
Change-Id: I753744adf106d515abdc5caf2b29c53962aeae71
Diffstat (limited to 'cui/source/customize')
-rw-r--r-- | cui/source/customize/acccfg.cxx | 2 | ||||
-rw-r--r-- | cui/source/customize/cfgutil.cxx | 22 |
2 files changed, 12 insertions, 12 deletions
diff --git a/cui/source/customize/acccfg.cxx b/cui/source/customize/acccfg.cxx index 5cbae2b18787..970d72ff264d 100644 --- a/cui/source/customize/acccfg.cxx +++ b/cui/source/customize/acccfg.cxx @@ -728,7 +728,7 @@ SfxAcceleratorConfigPage::SfxAcceleratorConfigPage( Window* pParent, const SfxIt , aGroupText (this , CUI_RES(TXT_ACC_GROUP )) , pGroupLBox(new SfxConfigGroupListBox( this, CUI_RES(BOX_ACC_GROUP), SFX_SLOT_ACCELCONFIG )) , aFunctionText (this , CUI_RES(TXT_ACC_FUNCTION )) - , pFunctionBox(new SfxConfigFunctionListBox_Impl( this, CUI_RES( BOX_ACC_FUNCTION ))) + , pFunctionBox(new SfxConfigFunctionListBox( this, CUI_RES( BOX_ACC_FUNCTION ))) , aKeyText (this , CUI_RES(TXT_ACC_KEY )) , aKeyBox (this , CUI_RES(BOX_ACC_KEY )) , aFunctionsGroup (this , CUI_RES(GRP_ACC_FUNCTIONS )) diff --git a/cui/source/customize/cfgutil.cxx b/cui/source/customize/cfgutil.cxx index 6123c67e379d..ee0722a06030 100644 --- a/cui/source/customize/cfgutil.cxx +++ b/cui/source/customize/cfgutil.cxx @@ -248,7 +248,7 @@ void SfxStylesInfo_Impl::getLabel4Style(SfxStyleInfo_Impl& aStyle) return lStyles; } -SfxConfigFunctionListBox_Impl::SfxConfigFunctionListBox_Impl( Window* pParent, const ResId& rResId) +SfxConfigFunctionListBox::SfxConfigFunctionListBox( Window* pParent, const ResId& rResId) : SvTreeListBox( pParent, rResId ) , pCurEntry( 0 ) , pStylesInfo( 0 ) @@ -259,19 +259,19 @@ SfxConfigFunctionListBox_Impl::SfxConfigFunctionListBox_Impl( Window* pParent, c // Timer for the BallonHelp aTimer.SetTimeout( 200 ); aTimer.SetTimeoutHdl( - LINK( this, SfxConfigFunctionListBox_Impl, TimerHdl ) ); + LINK( this, SfxConfigFunctionListBox, TimerHdl ) ); } -SfxConfigFunctionListBox_Impl::~SfxConfigFunctionListBox_Impl() +SfxConfigFunctionListBox::~SfxConfigFunctionListBox() { ClearAll(); } -void SfxConfigFunctionListBox_Impl::MouseMove( const MouseEvent& ) +void SfxConfigFunctionListBox::MouseMove( const MouseEvent& ) { } -IMPL_LINK( SfxConfigFunctionListBox_Impl, TimerHdl, Timer*, pTimer) +IMPL_LINK( SfxConfigFunctionListBox, TimerHdl, Timer*, pTimer) /* Description Timer-handler for showing a help-text. If the mouse pointer is still on the currently selected entry after the timer has run out, @@ -282,7 +282,7 @@ IMPL_LINK( SfxConfigFunctionListBox_Impl, TimerHdl, Timer*, pTimer) return 0L; } -void SfxConfigFunctionListBox_Impl::ClearAll() +void SfxConfigFunctionListBox::ClearAll() /* Description Deletes all entries in the FunctionListBox, all UserData and all possibly existing MacroInfo. @@ -313,7 +313,7 @@ void SfxConfigFunctionListBox_Impl::ClearAll() Clear(); } -OUString SfxConfigFunctionListBox_Impl::GetSelectedScriptURI() +OUString SfxConfigFunctionListBox::GetSelectedScriptURI() { SvTreeListEntry *pEntry = FirstSelected(); if ( pEntry ) @@ -325,7 +325,7 @@ OUString SfxConfigFunctionListBox_Impl::GetSelectedScriptURI() return OUString(); } -OUString SfxConfigFunctionListBox_Impl::GetCurCommand() +OUString SfxConfigFunctionListBox::GetCurCommand() { SvTreeListEntry *pEntry = FirstSelected(); if (!pEntry) @@ -336,7 +336,7 @@ OUString SfxConfigFunctionListBox_Impl::GetCurCommand() return pData->sCommand; } -OUString SfxConfigFunctionListBox_Impl::GetCurLabel() +OUString SfxConfigFunctionListBox::GetCurLabel() { SvTreeListEntry *pEntry = FirstSelected(); if (!pEntry) @@ -349,7 +349,7 @@ OUString SfxConfigFunctionListBox_Impl::GetCurLabel() return pData->sCommand; } -void SfxConfigFunctionListBox_Impl::FunctionSelected() +void SfxConfigFunctionListBox::FunctionSelected() /* Description Resets the balloon-help because it shall always show the help-text of the selected entry. @@ -357,7 +357,7 @@ void SfxConfigFunctionListBox_Impl::FunctionSelected() { } -void SfxConfigFunctionListBox_Impl::SetStylesInfo(SfxStylesInfo_Impl* pStyles) +void SfxConfigFunctionListBox::SetStylesInfo(SfxStylesInfo_Impl* pStyles) { pStylesInfo = pStyles; } |