forked from qt-creator/qt-creator
Pass explicitly the storage to the postProcessTask() instead. Change-Id: I75ac10969530dfea1eac266b44481be3b1d8249b Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Orgad Shaneh <orgads@gmail.com>
41 lines
1017 B
C++
41 lines
1017 B
C++
// Copyright (C) 2017 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
#pragma once
|
|
|
|
#include "vcsbase_global.h"
|
|
|
|
#include <diffeditor/diffeditorcontroller.h>
|
|
|
|
namespace Utils {
|
|
class Environment;
|
|
class Process;
|
|
} // Utils
|
|
|
|
namespace VcsBase {
|
|
|
|
class VcsBaseDiffEditorControllerPrivate;
|
|
|
|
class VCSBASE_EXPORT VcsBaseDiffEditorController : public DiffEditor::DiffEditorController
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit VcsBaseDiffEditorController(Core::IDocument *document);
|
|
~VcsBaseDiffEditorController() override;
|
|
|
|
void setProcessEnvironment(const Utils::Environment &value);
|
|
void setVcsBinary(const Utils::FilePath &path);
|
|
|
|
protected:
|
|
Tasking::GroupItem postProcessTask(const Tasking::TreeStorage<QString> &inputStorage);
|
|
|
|
void setupCommand(Utils::Process &process, const QStringList &args) const;
|
|
|
|
private:
|
|
friend class VcsBaseDiffEditorControllerPrivate;
|
|
VcsBaseDiffEditorControllerPrivate *d;
|
|
};
|
|
|
|
} //namespace VcsBase
|