From ec86b505fca3af7b68d97fda5a867a2de7ca81c4 Mon Sep 17 00:00:00 2001 From: Andreas Buhr Date: Wed, 10 Jan 2024 16:48:03 +0100 Subject: [PATCH] QProcess::start(path) is deprecated - adapt code (#3948) --- src/FileIO/QuarqRideFile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FileIO/QuarqRideFile.cpp b/src/FileIO/QuarqRideFile.cpp index cf72997b9..65cb684bc 100644 --- a/src/FileIO/QuarqRideFile.cpp +++ b/src/FileIO/QuarqRideFile.cpp @@ -29,7 +29,7 @@ QProcess *getInterpreterProcess( QString path ) { QProcess *antProcess; antProcess = new QProcess( ); - antProcess->start( path ); + antProcess->start( path, QStringList() /* arguments */); if (!antProcess->waitForStarted()) { antProcess->deleteLater();