Home > Enterprise >  Alternatives to QProcess::startDetached() and QProcess start() as they are deprecated
Alternatives to QProcess::startDetached() and QProcess start() as they are deprecated

Time:09-17

What are the alternatives to QProcess::startDetached() and QProcess::start() to start an external application as they are marked deprecated in qt5?

CodePudding user response:

Only some overloads of the start() and startDetached() method are deprecated like:

But the others are still available:

  • Related