aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/vcsbase/vcscommand.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/vcsbase/vcscommand.h')
-rw-r--r--src/plugins/vcsbase/vcscommand.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/vcsbase/vcscommand.h b/src/plugins/vcsbase/vcscommand.h
index 568d1095801..1cc4d5db54e 100644
--- a/src/plugins/vcsbase/vcscommand.h
+++ b/src/plugins/vcsbase/vcscommand.h
@@ -20,7 +20,7 @@ QT_END_NAMESPACE
namespace Utils {
class CommandLine;
class Environment;
-class QtcProcess;
+class Process;
}
namespace VcsBase {
@@ -33,7 +33,7 @@ class VCSBASE_EXPORT CommandResult
{
public:
CommandResult() = default;
- CommandResult(const Utils::QtcProcess &process);
+ CommandResult(const Utils::Process &process);
CommandResult(const VcsCommand &command);
CommandResult(Utils::ProcessResult result, const QString &exitMessage)
: m_result(result), m_exitMessage(exitMessage) {}