Core::ShellCommand: Remove unused futureProgress()

Change-Id: I15f0ed521714adc873c06f510a03a44a941aaffa
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
Jarek Kobus
2022-07-11 11:09:41 +02:00
parent 917d7e0007
commit 9891a879aa
2 changed files with 0 additions and 7 deletions

View File

@@ -42,11 +42,6 @@ ShellCommand::ShellCommand(const FilePath &workingDirectory, const Environment &
this, &ShellCommand::coreAboutToClose);
}
FutureProgress *ShellCommand::futureProgress() const
{
return m_progress.data();
}
void ShellCommand::addTask(QFuture<void> &future)
{
const QString name = displayName();

View File

@@ -42,8 +42,6 @@ class CORE_EXPORT ShellCommand : public Utils::ShellCommand
public:
ShellCommand(const Utils::FilePath &workingDirectory, const Utils::Environment &environment);
FutureProgress *futureProgress() const;
protected:
void addTask(QFuture<void> &future) override;