summaryrefslogtreecommitdiffstats
path: root/src/detailedlistview.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-08-12 18:44:30 +0900
committerMichele Calgaro <[email protected]>2023-08-16 19:20:35 +0900
commit074a3e6db609cc04e0a5830b0c1884447d0e5bbb (patch)
tree536f2f3b637ac5f0f91e76a9e2090480b4dda19f /src/detailedlistview.cpp
parente164b1d02780da8e0d91f5c6617b511f1b24fc6d (diff)
downloadtellico-074a3e6db609cc04e0a5830b0c1884447d0e5bbb.tar.gz
tellico-074a3e6db609cc04e0a5830b0c1884447d0e5bbb.zip
Drop TQT_BASE_OBJECT* defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/detailedlistview.cpp')
-rw-r--r--src/detailedlistview.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/detailedlistview.cpp b/src/detailedlistview.cpp
index 938c4a4..8d86262 100644
--- a/src/detailedlistview.cpp
+++ b/src/detailedlistview.cpp
@@ -378,7 +378,7 @@ Tellico::DetailedEntryItem* DetailedListView::locateItem(Data::EntryPtr entry_)
bool DetailedListView::eventFilter(TQObject* obj_, TQEvent* ev_) {
if(ev_->type() == TQEvent::MouseButtonPress
&& TQT_TQMOUSEEVENT(ev_)->button() == Qt::RightButton
- && TQT_BASE_OBJECT(obj_) == TQT_BASE_OBJECT(header())) {
+ && obj_ == header()) {
m_headerMenu->popup(TQT_TQMOUSEEVENT(ev_)->globalPos());
return true;
}