diff options
Diffstat (limited to 'korn/account_input.cpp')
-rw-r--r-- | korn/account_input.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/korn/account_input.cpp b/korn/account_input.cpp index 7603e56b2..d75848052 100644 --- a/korn/account_input.cpp +++ b/korn/account_input.cpp @@ -65,7 +65,7 @@ TextInput::TextInput( TQWidget *parent, const TQString& title, int min, int max, { _left = new TQLabel( title, parent, "label" ); _right = new KLineEdit( "", parent, "edit" ); - _right->setValidator( new TQIntValidator( min, max, TQT_TQOBJECT(_right), "validator" ) ); + _right->setValidator( new TQIntValidator( min, max, _right, "validator" ) ); setValue( defaul ); } |