From f21d2023e86e8ba9c0725852a79394ec80baaf16 Mon Sep 17 00:00:00 2001 From: Tobias Hunger Date: Fri, 23 Jan 2015 10:00:45 +0100 Subject: Utils: Add a WizardPage to show progress of a ShellCommand Use the new page in favor of the CheckoutProgressWizardPage. Change-Id: I7801c146fa67d6fcf550616f3798a7a919aafb96 Reviewed-by: Orgad Shaneh --- src/plugins/cvs/checkoutwizard.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/plugins/cvs/checkoutwizard.cpp') diff --git a/src/plugins/cvs/checkoutwizard.cpp b/src/plugins/cvs/checkoutwizard.cpp index 343ee8161e..334cd415c2 100644 --- a/src/plugins/cvs/checkoutwizard.cpp +++ b/src/plugins/cvs/checkoutwizard.cpp @@ -73,6 +73,10 @@ VcsCommand *CheckoutWizard::createCommand(Utils::FileName *checkoutDir) const Utils::FileName binary = settings.binaryPath(); QStringList args; + // cwp->repository() contains the CVS module to check out only. + // The CVSROOT (== actual repository) for that module is part of the CVS settings. + // The checkout will always go into a new subfolder named after the CVS module. + const QString repository = cwp->repository(); args << QLatin1String("checkout") << repository; const QString workingDirectory = cwp->path(); -- cgit v1.2.1