aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/vcsbase/wizard/vcscommandpage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/vcsbase/wizard/vcscommandpage.cpp')
-rw-r--r--src/plugins/vcsbase/wizard/vcscommandpage.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/vcsbase/wizard/vcscommandpage.cpp b/src/plugins/vcsbase/wizard/vcscommandpage.cpp
index 6ad605f586..f40138c1a3 100644
--- a/src/plugins/vcsbase/wizard/vcscommandpage.cpp
+++ b/src/plugins/vcsbase/wizard/vcscommandpage.cpp
@@ -287,7 +287,7 @@ void VcsCommandPage::delayedInitialize()
}
Core::ShellCommand *command
- = vc->createInitialCheckoutCommand(repo, FileName::fromString(base),
+ = vc->createInitialCheckoutCommand(repo, FilePath::fromString(base),
name, extraArgs);
foreach (const JobData &job, m_additionalJobs) {
@@ -310,7 +310,7 @@ void VcsCommandPage::delayedInitialize()
const QString dir = wiz->expander()->expand(job.workDirectory);
const int timeoutS = command->defaultTimeoutS() * job.timeOutFactor;
- command->addJob(FileName::fromUserInput(commandString), args, timeoutS, dir);
+ command->addJob(FilePath::fromUserInput(commandString), args, timeoutS, dir);
}
start(command);