diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-08-12 18:42:46 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-08-16 13:11:05 +0900 |
commit | eac5a923bfe691153309b671a4aa0c8a31d9a776 (patch) | |
tree | 82a9e4f40eb0c35c33b771f3e7689d9b1ffacf54 /libk3b/tools | |
parent | bbf8323611cd45fff405a3f8bd24516e404d5aa8 (diff) | |
download | k3b-eac5a923bfe691153309b671a4aa0c8a31d9a776.tar.gz k3b-eac5a923bfe691153309b671a4aa0c8a31d9a776.zip |
Drop TQT_BASE_OBJECT* defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'libk3b/tools')
-rw-r--r-- | libk3b/tools/k3blistview.cpp | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/libk3b/tools/k3blistview.cpp b/libk3b/tools/k3blistview.cpp index 03be684..b6ab012 100644 --- a/libk3b/tools/k3blistview.cpp +++ b/libk3b/tools/k3blistview.cpp @@ -1017,9 +1017,9 @@ bool K3bListView::eventFilter( TQObject* o, TQEvent* e ) if( e->type() == TQEvent::KeyPress ) { TQKeyEvent* ke = TQT_TQKEYEVENT(e); if( ke->key() == Key_Tab ) { - if( TQT_BASE_OBJECT(o) == TQT_BASE_OBJECT(m_editorLineEdit) || - TQT_BASE_OBJECT(o) == TQT_BASE_OBJECT(d->msfEditLineEdit) || - TQT_BASE_OBJECT(o) == TQT_BASE_OBJECT(d->spinBoxLineEdit) ) { + if( o == m_editorLineEdit || + o == d->msfEditLineEdit || + o == d->spinBoxLineEdit ) { K3bListViewItem* lastEditItem = m_currentEditItem; doRename(); @@ -1059,9 +1059,9 @@ bool K3bListView::eventFilter( TQObject* o, TQEvent* e ) } if( ke->key() == Key_Return || ke->key() == Key_Enter ) { - if( TQT_BASE_OBJECT(o) == TQT_BASE_OBJECT(m_editorLineEdit) || - TQT_BASE_OBJECT(o) == TQT_BASE_OBJECT(d->msfEditLineEdit) || - TQT_BASE_OBJECT(o) == TQT_BASE_OBJECT(d->spinBoxLineEdit) ) { + if( o == m_editorLineEdit || + o == d->msfEditLineEdit || + o == d->spinBoxLineEdit ) { K3bListViewItem* lastEditItem = m_currentEditItem; doRename(); @@ -1079,9 +1079,9 @@ bool K3bListView::eventFilter( TQObject* o, TQEvent* e ) } } else if( ke->key() == Key_Escape ) { - if( TQT_BASE_OBJECT(o) == TQT_BASE_OBJECT(m_editorLineEdit) || - TQT_BASE_OBJECT(o) == TQT_BASE_OBJECT(d->msfEditLineEdit) || - TQT_BASE_OBJECT(o) == TQT_BASE_OBJECT(d->spinBoxLineEdit) ) { + if( o == m_editorLineEdit || + o == d->msfEditLineEdit || + o == d->spinBoxLineEdit ) { hideEditor(); // keep the focus here @@ -1092,7 +1092,7 @@ bool K3bListView::eventFilter( TQObject* o, TQEvent* e ) } } - else if( e->type() == TQEvent::MouseButtonPress && TQT_BASE_OBJECT(o) == TQT_BASE_OBJECT(viewport()) ) { + else if( e->type() == TQEvent::MouseButtonPress && o == viewport() ) { // first let's grab the focus viewport()->setFocus(); @@ -1138,12 +1138,12 @@ bool K3bListView::eventFilter( TQObject* o, TQEvent* e ) } else if( e->type() == TQEvent::FocusOut ) { - if( TQT_BASE_OBJECT(o) == TQT_BASE_OBJECT(m_editorLineEdit) || - TQT_BASE_OBJECT(o) == TQT_BASE_OBJECT(d->msfEditLineEdit) || - TQT_BASE_OBJECT(o) == TQT_BASE_OBJECT(d->spinBoxLineEdit) || - TQT_BASE_OBJECT(o) == TQT_BASE_OBJECT(m_editorComboBox) ) { + if( o == m_editorLineEdit || + o == d->msfEditLineEdit || + o == d->spinBoxLineEdit || + o == m_editorComboBox ) { // make sure we did not lose the focus to one of the edit widgets' children - if( !tqApp->focusWidget() || TQT_BASE_OBJECT(tqApp->focusWidget()->parentWidget()) != TQT_BASE_OBJECT(o) ) { + if( !tqApp->focusWidget() || tqApp->focusWidget()->parentWidget() != o ) { doRename(); hideEditor(); } |