fix uninitialised var

Valgrind pointed this out whilst debugging something else.

REVIEW: 127079
This commit is contained in:
David Edmundson 2016-02-23 13:04:54 +00:00 committed by David Edmundson
parent 78cee23be3
commit 73aa13b26d

View File

@ -26,7 +26,8 @@
#include <QCoreApplication>
Application::Private::Private(Application *parent)
: q(parent)
: q(parent),
running(false)
{
connect(
&process, SIGNAL(stateChanged(QProcess::ProcessState)),