Vcs: Append "Factory" to the variaus checkout wizards

Change-Id: I571717a389c63f4f0371570e22d3f2a834e8b900
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
Tobias Hunger
2014-05-05 16:00:20 +02:00
parent 043c193e3d
commit 67c2c77a99
18 changed files with 37 additions and 37 deletions

View File

@@ -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.