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

@@ -43,7 +43,7 @@
namespace Subversion {
namespace Internal {
CheckoutWizard::CheckoutWizard()
CheckoutWizardFactory::CheckoutWizardFactory()
{
setId(QLatin1String(VcsBase::Constants::VCS_ID_SUBVERSION));
setIcon(QIcon(QLatin1String(":/subversion/images/subversion.png")));
@@ -51,7 +51,7 @@ CheckoutWizard::CheckoutWizard()
setDisplayName(tr("Subversion Checkout"));
}
QList<QWizardPage*> CheckoutWizard::createParameterPages(const QString &path)
QList<QWizardPage*> CheckoutWizardFactory::createParameterPages(const QString &path)
{
QList<QWizardPage*> rc;
const Core::IVersionControl *vc = SubversionPlugin::instance()->versionControl();
@@ -63,7 +63,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.