diff options
Diffstat (limited to 'src/smalldialogs.cpp')
-rw-r--r-- | src/smalldialogs.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/smalldialogs.cpp b/src/smalldialogs.cpp index b27aed5..f0c3f33 100644 --- a/src/smalldialogs.cpp +++ b/src/smalldialogs.cpp @@ -200,8 +200,8 @@ bool OpenDialog::eventFilter(TQObject* o, TQEvent* e) if ( lst.count() > 0 ) { - static_cast<TQLineEdit*>(TQT_TQWIDGET(o))->setText( lst[0] ); - static_cast<TQLineEdit*>(TQT_TQWIDGET(o))->setFocus(); + static_cast<TQLineEdit*>(o)->setText( lst[0] ); + static_cast<TQLineEdit*>(o)->setFocus(); } return true; |