From d3656a49e67074e23e8df5daef0f585199b0a8da Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 14 Jan 2024 13:10:18 +0900 Subject: Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines Signed-off-by: Michele Calgaro (cherry picked from commit b0c86264e0cd10a0d3a47de3b05be453d9417bcd) --- kspy/spy.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'kspy/spy.cpp') diff --git a/kspy/spy.cpp b/kspy/spy.cpp index 6911c269..a7d99e5d 100644 --- a/kspy/spy.cpp +++ b/kspy/spy.cpp @@ -74,14 +74,14 @@ Spy::Spy( TQWidget *parent, const char *name ) mNavView->buildTree(); - connect( mNavView, TQT_SIGNAL( selected( TQObject * ) ), - mPropsView, TQT_SLOT( setTarget( TQObject * ) ) ); - connect( mNavView, TQT_SIGNAL( selected( TQObject * ) ), - mSigSlotView, TQT_SLOT( setTarget( TQObject * ) ) ); - connect( mNavView, TQT_SIGNAL( selected( TQObject * ) ), - mReceiversView, TQT_SLOT( setTarget( TQObject * ) ) ); - connect( mNavView, TQT_SIGNAL( selected( TQObject * ) ), - mClassInfoView, TQT_SLOT( setTarget( TQObject * ) ) ); + connect( mNavView, TQ_SIGNAL( selected( TQObject * ) ), + mPropsView, TQ_SLOT( setTarget( TQObject * ) ) ); + connect( mNavView, TQ_SIGNAL( selected( TQObject * ) ), + mSigSlotView, TQ_SLOT( setTarget( TQObject * ) ) ); + connect( mNavView, TQ_SIGNAL( selected( TQObject * ) ), + mReceiversView, TQ_SLOT( setTarget( TQObject * ) ) ); + connect( mNavView, TQ_SIGNAL( selected( TQObject * ) ), + mClassInfoView, TQ_SLOT( setTarget( TQObject * ) ) ); } Spy::~Spy() -- cgit v1.2.1