QMakeStep: Remove unneeded override

Change-Id: Ib91ee608673c6a2b33ebfe704c8f31b647ab897e
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Jarek Kobus
2022-11-30 17:05:15 +01:00
parent 7e9d50a2c9
commit dc3a4f0002
2 changed files with 0 additions and 6 deletions

View File

@@ -309,11 +309,6 @@ bool QMakeStep::processSucceeded(int exitCode, QProcess::ExitStatus status)
return result; return result;
} }
void QMakeStep::doCancel()
{
AbstractProcessStep::doCancel();
}
void QMakeStep::finish(bool success) void QMakeStep::finish(bool success)
{ {
m_wasSuccess = success; m_wasSuccess = success;

View File

@@ -141,7 +141,6 @@ protected:
bool processSucceeded(int exitCode, QProcess::ExitStatus status) override; bool processSucceeded(int exitCode, QProcess::ExitStatus status) override;
private: private:
void doCancel() override;
void finish(bool success) override; void finish(bool success) override;
void startOneCommand(const Utils::CommandLine &command); void startOneCommand(const Utils::CommandLine &command);