summaryrefslogtreecommitdiffstats
path: root/src/fetchdialog.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-08-12 18:44:30 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-08-16 19:20:35 +0900
commit074a3e6db609cc04e0a5830b0c1884447d0e5bbb (patch)
tree536f2f3b637ac5f0f91e76a9e2090480b4dda19f /src/fetchdialog.cpp
parente164b1d02780da8e0d91f5c6617b511f1b24fc6d (diff)
downloadtellico-074a3e6db609cc04e0a5830b0c1884447d0e5bbb.tar.gz
tellico-074a3e6db609cc04e0a5830b0c1884447d0e5bbb.zip
Drop TQT_BASE_OBJECT* defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/fetchdialog.cpp')
-rw-r--r--src/fetchdialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fetchdialog.cpp b/src/fetchdialog.cpp
index 003dedb..15fef58 100644
--- a/src/fetchdialog.cpp
+++ b/src/fetchdialog.cpp
@@ -660,7 +660,7 @@ void FetchDialog::slotUPC2ISBN() {
}
bool FetchDialog::eventFilter(TQObject* obj_, TQEvent* ev_) {
- if(TQT_BASE_OBJECT(obj_) == TQT_BASE_OBJECT(m_listView->viewport()) && ev_->type() == TQEvent::Resize) {
+ if(obj_ == m_listView->viewport() && ev_->type() == TQEvent::Resize) {
adjustColumnWidth();
}
return false;