forked from qt-creator/qt-creator
Vcs: Append "Factory" to the variaus checkout wizards
Change-Id: I571717a389c63f4f0371570e22d3f2a834e8b900 Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
@@ -40,7 +40,7 @@
|
||||
using namespace Mercurial::Internal;
|
||||
using namespace VcsBase;
|
||||
|
||||
CloneWizard::CloneWizard()
|
||||
CloneWizardFactory::CloneWizardFactory()
|
||||
{
|
||||
setId(QLatin1String(Constants::VCS_ID_MERCURIAL));
|
||||
setCustomLabels(tr("Cloning"), tr("Cloning started..."));
|
||||
@@ -49,7 +49,7 @@ CloneWizard::CloneWizard()
|
||||
setDisplayName(tr("Mercurial Clone"));
|
||||
}
|
||||
|
||||
QList<QWizardPage *> CloneWizard::createParameterPages(const QString &path)
|
||||
QList<QWizardPage *> CloneWizardFactory::createParameterPages(const QString &path)
|
||||
{
|
||||
QList<QWizardPage *> wizardPageList;
|
||||
const Core::IVersionControl *vc = MercurialPlugin::instance()->versionControl();
|
||||
@@ -61,7 +61,7 @@ QList<QWizardPage *> CloneWizard::createParameterPages(const QString &path)
|
||||
return wizardPageList;
|
||||
}
|
||||
|
||||
Command *CloneWizard::createCommand(const QList<QWizardPage *> ¶meterPages,
|
||||
Command *CloneWizardFactory::createCommand(const QList<QWizardPage *> ¶meterPages,
|
||||
QString *checkoutPath)
|
||||
{
|
||||
const CloneWizardPage *page = qobject_cast<const CloneWizardPage *>(parameterPages.front());
|
||||
|
||||
Reference in New Issue
Block a user