VcsBase: Rename CheckoutWizardDialog to BaseCheckoutWizard

Change-Id: I4e2729e7e0f0a15d4943099cd7f02824f3dc43d2
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
Tobias Hunger
2014-05-05 15:45:18 +02:00
parent b4965ba023
commit 264b833fd6
3 changed files with 14 additions and 14 deletions

View File

@@ -68,7 +68,7 @@ public:
BaseCheckoutWizardPrivate() : dialog(0) {}
void clear();
CheckoutWizardDialog *dialog;
BaseCheckoutWizard *dialog;
QList<QWizardPage *> parameterPages;
QString checkoutPath;
QString progressTitle;
@@ -106,7 +106,7 @@ void BaseCheckoutWizardFactory::runWizard(const QString &path, QWidget *parent,
Q_UNUSED(extraValues);
// Create dialog and launch
d->parameterPages = createParameterPages(path);
CheckoutWizardDialog dialog(d->parameterPages, parent);
BaseCheckoutWizard dialog(d->parameterPages, parent);
if (!d->progressTitle.isEmpty())
dialog.setTitle(d->progressTitle);
if (!d->startedStatus.isEmpty())