Fix an out of order compile warning.

Initialization should happen in the same order as variables are declared.
CC: huzaifafaruqui@gmail.com
This commit is contained in:
Andrius Štikonas 2018-02-04 13:44:55 +00:00
parent 4cae6f0632
commit b35c21ed71
1 changed files with 2 additions and 2 deletions

View File

@ -39,9 +39,9 @@
ExternalCommand::ExternalCommand(CopySource& source, CopyTarget& target,const QProcess::ProcessChannelMode processChannelMode) : ExternalCommand::ExternalCommand(CopySource& source, CopyTarget& target,const QProcess::ProcessChannelMode processChannelMode) :
m_ExitCode(-1),
m_Source(&source), m_Source(&source),
m_Target(&target), m_Target(&target)
m_ExitCode(-1)
{ {
setup(processChannelMode); setup(processChannelMode);
} }