Comment 9 for bug 902115

Revision history for this message
Tim Bentley (trb143) wrote : Re: OpenLP will not start on Fedora 16 with Impress enabled

Kevin Kofler <email address hidden> changed:

          What |Removed |Added
----------------------------------------------------------------------------
         Component|qt |OpenLP
        AssignedTo|<email address hidden> |<email address hidden>

--- Comment #14 from Kevin Kofler <email address hidden> 2012-02-24 14:37:55 EST ---
You cannot waitForStarted() on a process started with startDetached().

startDetached is a static method of QProcess, which starts a process in a
fire&forget way, it does not track any state inside a QProcess object (in fact,
it can be run without any). Thus, you're running waitForStarted on a
default-constructed process where nothing is actually being started in the
first place.