summaryrefslogtreecommitdiff
path: root/src/plugins/cvs/checkoutwizard.cpp
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@digia.com>2014-05-05 16:00:20 +0200
committerTobias Hunger <tobias.hunger@digia.com>2014-05-26 11:43:48 +0200
commit67c2c77a99b41247652279b3732c4cdf0ff84e6a (patch)
tree57b8beab0a513b089e2812f1dcffaa4c2411cf92 /src/plugins/cvs/checkoutwizard.cpp
parent043c193e3d042841f7dddd3d7da7b942860b5a88 (diff)
downloadqt-creator-67c2c77a99b41247652279b3732c4cdf0ff84e6a.tar.gz
Vcs: Append "Factory" to the variaus checkout wizards
Change-Id: I571717a389c63f4f0371570e22d3f2a834e8b900 Reviewed-by: Orgad Shaneh <orgads@gmail.com>
Diffstat (limited to 'src/plugins/cvs/checkoutwizard.cpp')
-rw-r--r--src/plugins/cvs/checkoutwizard.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/cvs/checkoutwizard.cpp b/src/plugins/cvs/checkoutwizard.cpp
index b9660f3d8a..c86d9aa5d8 100644
--- a/src/plugins/cvs/checkoutwizard.cpp
+++ b/src/plugins/cvs/checkoutwizard.cpp
@@ -40,7 +40,7 @@
namespace Cvs {
namespace Internal {
-CheckoutWizard::CheckoutWizard()
+CheckoutWizardFactory::CheckoutWizardFactory()
{
setId(QLatin1String(VcsBase::Constants::VCS_ID_CVS));
setIcon(QIcon(QLatin1String(":/cvs/images/cvs.png")));
@@ -48,7 +48,7 @@ CheckoutWizard::CheckoutWizard()
setDisplayName(tr("CVS Checkout"));
}
-QList<QWizardPage*> CheckoutWizard::createParameterPages(const QString &path)
+QList<QWizardPage*> CheckoutWizardFactory::createParameterPages(const QString &path)
{
QList<QWizardPage*> rc;
const Core::IVersionControl *vc = CvsPlugin::instance()->versionControl();
@@ -60,7 +60,7 @@ QList<QWizardPage*> CheckoutWizard::createParameterPages(const QString &path)
return rc;
}
-VcsBase::Command *CheckoutWizard::createCommand(const QList<QWizardPage*> &parameterPages,
+VcsBase::Command *CheckoutWizardFactory::createCommand(const QList<QWizardPage*> &parameterPages,
QString *checkoutPath)
{
// Collect parameters for the checkout command.