Hi everyone


I have an issue with the QProcess classes. I launch a child process, with QProcess::start() (I want it to be attached), and for some external reason this child process crash. (error signal emitted with QProcessError::Crashed)

Then , I cannot use the same object to relaunch the external application, and I got an error "QProcess::start: Process is already running". I I destroyed the QProcess instance, then I also got an annoying warning : "QProcess: Destroyed while process is still running.".

As the child process crashed, is this behavior normal. I checked and no child process is running anymore, but for some reason QProcess class is ignoring this. Is trhis a normal feature or a bug ? If its a normal feature how can I get rid of this warning ?

For information I run Qt 4.6.2 from ubuntu 10.04 repository


best