I've started a process using QProcess::start()
and I need to detach it afterwards. How can I do it? I haven't found relevant info in the Qt docs.
I'm aware of QProcess::startDetached()
, but due to other code in the program, I can't use it (I need to separate the starting and the detaching of the process).