From a4241b7911d2e0b36edfb02f616b8b282050c0ec Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Fri, 12 Jan 2024 10:51:50 +0900 Subject: Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines Signed-off-by: Michele Calgaro --- khelpcenter/khc_indexbuilder.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'khelpcenter/khc_indexbuilder.cpp') diff --git a/khelpcenter/khc_indexbuilder.cpp b/khelpcenter/khc_indexbuilder.cpp index 6fac581c2..dd0ee5811 100644 --- a/khelpcenter/khc_indexbuilder.cpp +++ b/khelpcenter/khc_indexbuilder.cpp @@ -91,12 +91,12 @@ void IndexBuilder::processCmdQueue() *proc << args; - connect( proc, TQT_SIGNAL( processExited( TDEProcess * ) ), - TQT_SLOT( slotProcessExited( TDEProcess * ) ) ); - connect( proc, TQT_SIGNAL( receivedStdout(TDEProcess *, char *, int ) ), - TQT_SLOT( slotReceivedStdout(TDEProcess *, char *, int ) ) ); - connect( proc, TQT_SIGNAL( receivedStderr(TDEProcess *, char *, int ) ), - TQT_SLOT( slotReceivedStderr(TDEProcess *, char *, int ) ) ); + connect( proc, TQ_SIGNAL( processExited( TDEProcess * ) ), + TQ_SLOT( slotProcessExited( TDEProcess * ) ) ); + connect( proc, TQ_SIGNAL( receivedStdout(TDEProcess *, char *, int ) ), + TQ_SLOT( slotReceivedStdout(TDEProcess *, char *, int ) ) ); + connect( proc, TQ_SIGNAL( receivedStderr(TDEProcess *, char *, int ) ), + TQ_SLOT( slotReceivedStderr(TDEProcess *, char *, int ) ) ); mCmdQueue.remove( it ); @@ -211,7 +211,7 @@ int main( int argc, char **argv ) IndexBuilder builder(cmdFile); - TQTimer::singleShot(0, &builder, TQT_SLOT(buildIndices())); + TQTimer::singleShot(0, &builder, TQ_SLOT(buildIndices())); return app.exec(); } -- cgit v1.2.3