diff options
Diffstat (limited to 'tdeui/kcombobox.cpp')
-rw-r--r-- | tdeui/kcombobox.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tdeui/kcombobox.cpp b/tdeui/kcombobox.cpp index 66146bad3..466015adc 100644 --- a/tdeui/kcombobox.cpp +++ b/tdeui/kcombobox.cpp @@ -261,7 +261,7 @@ void KComboBox::setLineEdit( TQLineEdit *edit ) } TQComboBox::setLineEdit( edit ); - d->klineEdit = tqt_dynamic_cast<KLineEdit*>( edit ); + d->klineEdit = dynamic_cast<KLineEdit*>( edit ); setDelegate( d->klineEdit ); // Connect the returnPressed signal for both Q[K]LineEdits' |