summaryrefslogtreecommitdiff
path: root/svtools/source/contnr/ivctrl.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svtools/source/contnr/ivctrl.cxx')
-rw-r--r--svtools/source/contnr/ivctrl.cxx6
1 files changed, 1 insertions, 5 deletions
diff --git a/svtools/source/contnr/ivctrl.cxx b/svtools/source/contnr/ivctrl.cxx
index 2ded15f9c54f..032345a94898 100644
--- a/svtools/source/contnr/ivctrl.cxx
+++ b/svtools/source/contnr/ivctrl.cxx
@@ -278,10 +278,6 @@ void SvtIconChoiceCtrl::ClickIcon()
GetSelectedEntry();
_aClickIconHdl.Call( this );
}
-bool SvtIconChoiceCtrl::IsEntryEditing() const
-{
- return _pImpl->IsEntryEditing();
-}
void SvtIconChoiceCtrl::SetChoiceWithCursor()
{
@@ -301,7 +297,7 @@ void SvtIconChoiceCtrl::KeyInput( const KeyEvent& rKEvt )
bool SvtIconChoiceCtrl::DoKeyInput( const KeyEvent& rKEvt )
{
// under OS/2, we get key up/down even while editing
- if( IsEntryEditing() )
+ if( _pImpl->IsEntryEditing() )
return true;
_pCurKeyEvent = const_cast<KeyEvent*>(&rKEvt);
bool bHandled = _pImpl->KeyInput( rKEvt );