VcsCommand: Remove unused field

Change-Id: I14ce1c616bb98bef127aec666ca9241e63584e40
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
Jarek Kobus
2022-08-03 07:33:56 +02:00
parent 191fc196d5
commit 8e48dd5c92

View File

@@ -111,7 +111,6 @@ public:
unsigned m_flags = 0;
bool m_progressiveOutput = false;
bool m_hadOutput = false;
bool m_aborted = false;
};
@@ -393,10 +392,8 @@ void VcsCommand::runSynchronous(QtcProcess &process)
d->m_progressParser->parseProgress(text);
if (d->m_flags & ShowStdOut)
emit append(text);
if (d->m_progressiveOutput) {
if (d->m_progressiveOutput)
emit stdOutText(text);
d->m_hadOutput = true;
}
});
}