summaryrefslogtreecommitdiffstats
path: root/lib/koproperty/editoritem.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-08-08 12:19:03 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-08-08 17:48:04 +0900
commit64574118b7f71db7cb0a7f513a824dd51185b632 (patch)
tree5bb277ee150a1aff31b86275c05d452dcde07572 /lib/koproperty/editoritem.cpp
parentc9fc87afcc603daf741f74d06301257ed2edc7c0 (diff)
downloadkoffice-64574118.tar.gz
koffice-64574118.zip
Drop TQT_TQ*_OBJECT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit ca88704c3e4a4fd5ddc9e96e4ccf22b53816e03d)
Diffstat (limited to 'lib/koproperty/editoritem.cpp')
-rw-r--r--lib/koproperty/editoritem.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/koproperty/editoritem.cpp b/lib/koproperty/editoritem.cpp
index 2fd9c18d2..d71bcac2f 100644
--- a/lib/koproperty/editoritem.cpp
+++ b/lib/koproperty/editoritem.cpp
@@ -239,7 +239,7 @@ void GroupContainer::setContents( TQWidget* contents )
bool GroupContainer::event( TQEvent * e ) {
if (e->type()==TQEvent::MouseButtonPress) {
TQMouseEvent* me = TQT_TQMOUSEEVENT(e);
- if (me->button() == Qt::LeftButton && d->contents && TQT_TQRECT_OBJECT(d->groupWidget->rect()).contains(me->pos())) {
+ if (me->button() == Qt::LeftButton && d->contents && d->groupWidget->rect().contains(me->pos())) {
d->groupWidget->setOpen(!d->groupWidget->isOpen());
if (d->groupWidget->isOpen())
d->contents->show();