diff options
author | Michele Calgaro <[email protected]> | 2023-08-08 12:13:56 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-08-08 17:42:55 +0900 |
commit | 6c942432065800f1ca40e40a3b38bf3d9696db92 (patch) | |
tree | 3bb24af975661e9b17dce5f18281f32c2597c071 /src/k3bfiletreecombobox.cpp | |
parent | 667ad9cdec9225d3fa298aefdc1d6d90000583d8 (diff) | |
download | k3b-6c942432065800f1ca40e40a3b38bf3d9696db92.tar.gz k3b-6c942432065800f1ca40e40a3b38bf3d9696db92.zip |
Drop TQT_TQ*_OBJECT defines
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 8bba839cd6b0aa56c4140243c65fdfb6b030a2c2)
Diffstat (limited to 'src/k3bfiletreecombobox.cpp')
-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); |