summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-07-11 20:57:55 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-07-11 20:57:55 +0900
commit8e3443dab4d82ceb97635d86e17f5c0e0e74d062 (patch)
tree57e7383b3f672c1e715a1723d88ee76e6cc1993e
parent66f152bfff8d863e620bdb358912b9e49d399ce6 (diff)
downloadgwenview-8e3443da.tar.gz
gwenview-8e3443da.zip
Replace _OBJECT_NAME_STRING defines with actual strings. This relates to the merging of tqtinterface with tqt3.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--src/gvcore/imageviewcontroller.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gvcore/imageviewcontroller.cpp b/src/gvcore/imageviewcontroller.cpp
index 136cdc5..1eefa4d 100644
--- a/src/gvcore/imageviewcontroller.cpp
+++ b/src/gvcore/imageviewcontroller.cpp
@@ -395,7 +395,7 @@ void ImageViewController::slotAutoHide() {
// Only hide cursor if we are not over a dialog
TQWidget* widget = TQT_TQWIDGET(TDEApplication::kApplication()->activeWindow());
- if (!widget || !widget->inherits(TQDIALOG_OBJECT_NAME_STRING)) {
+ if (!widget || !widget->inherits("TQDialog")) {
TQApplication::setOverrideCursor(blankCursor);
d->mCursorHidden=true;
}