Pavel Sanda wrote: > hi, > > some messages in progress debug window are doubled now. > > we use signal/slot mechanism for seeing process started > connect(proc_, SIGNAL(started()), this, SLOT(processStarted())); > > for reason i dont understand we reach into the processStarted() slot > twice for a single call. this seems to happen inside call > return proc_->waitForStarted(timeout); (Systemcall.cpp:298) > > is this expected or a bug? > pavel >
The Qt doc says: "This signal is emitted by QProcess when the process has started, and state() returns Running." Does this mean the signal is emitted twice? What does the Qt documentation exegesis say? Signal is called twice, Amen? Peter
