forked from qt-creator/qt-creator
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:
@@ -42,25 +42,12 @@
|
||||
namespace Subversion {
|
||||
namespace Internal {
|
||||
|
||||
CheckoutWizard::CheckoutWizard(QObject *parent) :
|
||||
VcsBase::BaseCheckoutWizard(parent)
|
||||
CheckoutWizard::CheckoutWizard()
|
||||
{
|
||||
setId(QLatin1String(VcsBase::Constants::VCS_ID_SUBVERSION));
|
||||
}
|
||||
|
||||
QIcon CheckoutWizard::icon() const
|
||||
{
|
||||
return QIcon(QLatin1String(":/subversion/images/subversion.png"));
|
||||
}
|
||||
|
||||
QString CheckoutWizard::description() const
|
||||
{
|
||||
return tr("Checks out a Subversion repository and tries to load the contained project.");
|
||||
}
|
||||
|
||||
QString CheckoutWizard::displayName() const
|
||||
{
|
||||
return tr("Subversion Checkout");
|
||||
setIcon(QIcon(QLatin1String(":/subversion/images/subversion.png")));
|
||||
setDescription(tr("Checks out a Subversion repository and tries to load the contained project."));
|
||||
setDisplayName(tr("Subversion Checkout"));
|
||||
}
|
||||
|
||||
QList<QWizardPage*> CheckoutWizard::createParameterPages(const QString &path)
|
||||
|
||||
Reference in New Issue
Block a user