diff options
Diffstat (limited to 'korn/account_input.cpp')
-rw-r--r-- | korn/account_input.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/korn/account_input.cpp b/korn/account_input.cpp index e3cb48f91..c7b35228e 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 ); } |