summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-08-12 18:45:29 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-08-15 14:29:58 +0900
commit2493c9445cef0f089ce4035a51609682a631ea84 (patch)
tree0c840fe1a37f600c6c25224cd924064ab3021733
parenta86e049675732bf1bcf76946acba5b3f2a6a09dc (diff)
downloadtde-style-qtcurve-2493c944.tar.gz
tde-style-qtcurve-2493c944.zip
Drop TQT_BASE_OBJECT* defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--style/qtcurve.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/style/qtcurve.cpp b/style/qtcurve.cpp
index dcfd231..a384cb1 100644
--- a/style/qtcurve.cpp
+++ b/style/qtcurve.cpp
@@ -2068,7 +2068,7 @@ bool QtCurveStyle::objectEventHandler( const TQStyleControlElementData &ceData,
if (ceData.widgetObjectTypes.contains("TQObject")) {
TQObject* object = reinterpret_cast<TQObject*>(source);
- if(itsHoverWidget && TQT_BASE_OBJECT(object)==TQT_BASE_OBJECT(itsHoverWidget) && (TQEvent::Destroy==event->type() || TQEvent::Hide==event->type()))
+ if(itsHoverWidget && object==itsHoverWidget && (TQEvent::Destroy==event->type() || TQEvent::Hide==event->type()))
resetHover();
#if 0
@@ -2524,7 +2524,7 @@ bool QtCurveStyle::objectEventHandler( const TQStyleControlElementData &ceData,
}
break;
case TQEvent::Leave:
- if(itsHoverWidget && TQT_BASE_OBJECT(object)==TQT_BASE_OBJECT(itsHoverWidget))
+ if(itsHoverWidget && object==itsHoverWidget)
{
resetHover();
((TQWidget *)object)->repaint(false);
@@ -8951,7 +8951,7 @@ void QtCurveStyle::tdehtmlWidgetDestroyed(TQObject *o)
void QtCurveStyle::hoverWidgetDestroyed(TQObject *o)
{
- if(TQT_BASE_OBJECT(o)==TQT_BASE_OBJECT(itsHoverWidget))
+ if(o==itsHoverWidget)
resetHover();
}