forked from qt-creator/qt-creator
Valgrind: Initialize member variable
Change-Id: I0645e53dc010224a04a9bfe3a8eea34d360ac72d Reviewed-by: Christian Kandeler <christian.kandeler@digia.com>
This commit is contained in:
committed by
Orgad Shaneh
parent
27f08d0ccb
commit
7166f13aa8
@@ -41,7 +41,9 @@ namespace Valgrind {
|
||||
|
||||
ValgrindProcess::ValgrindProcess(bool isLocal, const QSsh::SshConnectionParameters &sshParams,
|
||||
QSsh::SshConnection *connection, QObject *parent)
|
||||
: QObject(parent), m_isLocal(isLocal)
|
||||
: QObject(parent),
|
||||
m_isLocal(isLocal),
|
||||
m_localRunMode(ProjectExplorer::ApplicationLauncher::Gui)
|
||||
{
|
||||
m_remote.m_params = sshParams;
|
||||
m_remote.m_connection = connection;
|
||||
|
Reference in New Issue
Block a user