Cleanup IWizard interface and users

Added 639 lines, removed 1391.

Change-Id: I15ec7dd056d4f7ad79c6dd6a4181007ad14f6a43
Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
This commit is contained in:
hjk
2013-09-20 15:12:44 +02:00
parent aa32c2be87
commit 49d0789e64
76 changed files with 554 additions and 1306 deletions

View File

@@ -37,31 +37,16 @@
#include <vcsbase/vcsconfigurationpage.h>
#include <utils/qtcassert.h>
#include <QIcon>
namespace Git {
namespace Internal {
CloneWizard::CloneWizard(QObject *parent) :
VcsBase::BaseCheckoutWizard(parent)
CloneWizard::CloneWizard()
{
setId(QLatin1String(VcsBase::Constants::VCS_ID_GIT));
setCustomLabels(tr("Cloning"), tr("Cloning started..."));
}
QIcon CloneWizard::icon() const
{
return QIcon(QLatin1String(":/git/images/git.png"));
}
QString CloneWizard::description() const
{
return tr("Clones a Git repository and tries to load the contained project.");
}
QString CloneWizard::displayName() const
{
return tr("Git Repository Clone");
setIcon(QIcon(QLatin1String(":/git/images/git.png")));
setDescription(tr("Clones a Git repository and tries to load the contained project."));
setDisplayName(tr("Git Repository Clone"));
}
QList<QWizardPage*> CloneWizard::createParameterPages(const QString &path)