diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-08-08 12:22:36 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-08-08 12:22:36 +0900 |
commit | 16b9b38e0267f80b68a78d861d111ca182551d5c (patch) | |
tree | 950f33cf579eed5856192df691c3b89e29a260bb | |
parent | f52c435e293d27908ce3f2b0fe41d58f06f4ec80 (diff) | |
download | tdeutils-16b9b38e0267f80b68a78d861d111ca182551d5c.tar.gz tdeutils-16b9b38e0267f80b68a78d861d111ca182551d5c.zip |
Drop TQT_TQ*_OBJECT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r-- | klaptopdaemon/daemondock.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klaptopdaemon/daemondock.cpp b/klaptopdaemon/daemondock.cpp index 87c4f45..90a29aa 100644 --- a/klaptopdaemon/daemondock.cpp +++ b/klaptopdaemon/daemondock.cpp @@ -469,7 +469,7 @@ void laptop_dock::mousePressEvent( TQMouseEvent *event ) } void laptop_dock::mouseReleaseEvent( TQMouseEvent *e ) { - if ( !TQT_TQRECT_OBJECT(rect()).contains( e->pos() ) ) + if ( !rect().contains( e->pos() ) ) return; switch ( e->button() ) { |