summaryrefslogtreecommitdiffstats
path: root/korn/account_input.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'korn/account_input.cpp')
-rw-r--r--korn/account_input.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/korn/account_input.cpp b/korn/account_input.cpp
index e3cb48f9..c7b35228 100644
--- a/korn/account_input.cpp
+++ b/korn/account_input.cpp
@@ -136,8 +136,8 @@ TQString ComboInput::value() const
void ComboInput::setValue( const TQString& value )
{
- if( _list->tqcontains( value ) )
- _right->setCurrentItem( _list->keys().tqfindIndex( value ) );
+ if( _list->contains( value ) )
+ _right->setCurrentItem( _list->keys().findIndex( value ) );
else
_right->setCurrentItem( -1 );
}