From 1329ec6abbcb7b79cd960e0ca138f16598d5f11f Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sat, 13 Jan 2024 17:34:53 +0900 Subject: Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines Signed-off-by: Michele Calgaro --- ksirc/puke/pobject.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ksirc/puke/pobject.cpp') diff --git a/ksirc/puke/pobject.cpp b/ksirc/puke/pobject.cpp index 99be1274..28a305c1 100644 --- a/ksirc/puke/pobject.cpp +++ b/ksirc/puke/pobject.cpp @@ -83,14 +83,14 @@ void PObject::setWidget(TQObject *_o) // Disconnect everything from the object we where listning too // Just in case it fires something off, we don't want to get it if(widget() != 0){ - disconnect(widget(), TQT_SIGNAL(destroyed()), - this, TQT_SLOT(swidgetDestroyed())); + disconnect(widget(), TQ_SIGNAL(destroyed()), + this, TQ_SLOT(swidgetDestroyed())); } obj = _o; if(obj != 0){ - connect(widget(), TQT_SIGNAL(destroyed()), - this, TQT_SLOT(swidgetDestroyed())); + connect(widget(), TQ_SIGNAL(destroyed()), + this, TQ_SLOT(swidgetDestroyed())); } } -- cgit v1.2.3