diff options
author | Michele Calgaro <[email protected]> | 2023-08-08 12:12:50 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-08-08 17:42:34 +0900 |
commit | ff1ab64a5c1be7d4d7642da6282808ac19d526c7 (patch) | |
tree | 3ebe2a0c384077f14861b94f2a44422626c03b92 /src/gvcore/imageviewcontroller.cpp | |
parent | d6c24d70fffccecf73e9a8b87432ca798fdd7eb8 (diff) | |
download | gwenview-ff1ab64a5c1be7d4d7642da6282808ac19d526c7.tar.gz gwenview-ff1ab64a5c1be7d4d7642da6282808ac19d526c7.zip |
Drop TQT_TQ*_OBJECT defines
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit d1b610d43eef32a054c6113ec705f1c982339af8)
Diffstat (limited to 'src/gvcore/imageviewcontroller.cpp')
-rw-r--r-- | src/gvcore/imageviewcontroller.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gvcore/imageviewcontroller.cpp b/src/gvcore/imageviewcontroller.cpp index 1eefa4d..f97c847 100644 --- a/src/gvcore/imageviewcontroller.cpp +++ b/src/gvcore/imageviewcontroller.cpp @@ -387,7 +387,7 @@ void ImageViewController::slotAutoHide() { if (d->mFullScreenBar) { // Do not auto hide if the cursor is over the bar TQPoint pos=d->mFullScreenBar->mapFromGlobal(TQCursor::pos()); - if (TQT_TQRECT_OBJECT(d->mFullScreenBar->rect()).contains(pos)) { + if (d->mFullScreenBar->rect().contains(pos)) { d->restartAutoHideTimer(); return; } |