fix uninitialised var
Valgrind pointed this out whilst debugging something else. REVIEW: 127079
This commit is contained in:
parent
78cee23be3
commit
73aa13b26d
@ -26,7 +26,8 @@
|
||||
#include <QCoreApplication>
|
||||
|
||||
Application::Private::Private(Application *parent)
|
||||
: q(parent)
|
||||
: q(parent),
|
||||
running(false)
|
||||
{
|
||||
connect(
|
||||
&process, SIGNAL(stateChanged(QProcess::ProcessState)),
|
||||
|
Loading…
Reference in New Issue
Block a user