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>
|
#include <QCoreApplication>
|
||||||
|
|
||||||
Application::Private::Private(Application *parent)
|
Application::Private::Private(Application *parent)
|
||||||
: q(parent)
|
: q(parent),
|
||||||
|
running(false)
|
||||||
{
|
{
|
||||||
connect(
|
connect(
|
||||||
&process, SIGNAL(stateChanged(QProcess::ProcessState)),
|
&process, SIGNAL(stateChanged(QProcess::ProcessState)),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user