diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-08-08 12:13:56 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-08-08 12:13:56 +0900 |
commit | 8bba839cd6b0aa56c4140243c65fdfb6b030a2c2 (patch) | |
tree | c4a11eba92ba022210b80821fc59e0361fe16b1f | |
parent | e1e7558d74bce9c95948ff07d0595ac3c5728aba (diff) | |
download | k3b-8bba839cd6b0aa56c4140243c65fdfb6b030a2c2.tar.gz k3b-8bba839cd6b0aa56c4140243c65fdfb6b030a2c2.zip |
Drop TQT_TQ*_OBJECT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r-- | src/k3bfiletreecombobox.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/k3bfiletreecombobox.cpp b/src/k3bfiletreecombobox.cpp index 4075df7..3438d84 100644 --- a/src/k3bfiletreecombobox.cpp +++ b/src/k3bfiletreecombobox.cpp @@ -273,7 +273,7 @@ bool K3bFileTreeComboBox::eventFilter( TQObject* o, TQEvent* e ) } else if( e->type() == TQEvent::MouseButtonPress ) { TQMouseEvent* me = (TQMouseEvent*)e; - if ( !TQT_TQRECT_OBJECT(m_fileTreeView->rect()).contains( me->pos() ) ) { + if ( !m_fileTreeView->rect().contains( me->pos() ) ) { TQRect arrowRect = style().querySubControlMetrics( TQStyle::CC_ComboBox, this, TQStyle::SC_ComboBoxArrow); arrowRect = TQStyle::visualRect(arrowRect, this); |