Remove the side widget of the ProjectLoadWizard

We only have one page there, so there is no need for the
side widget.
This commit is contained in:
Tobias Hunger
2010-04-23 11:50:56 +02:00
parent aca07a08cb
commit f996b24612
2 changed files with 5 additions and 5 deletions

View File

@@ -48,7 +48,7 @@ using namespace Qt4ProjectManager;
using namespace Qt4ProjectManager::Internal;
ProjectLoadWizard::ProjectLoadWizard(Qt4Project *project, QWidget *parent, Qt::WindowFlags flags)
: Utils::Wizard(parent, flags), m_project(project), m_targetSetupPage(0)
: QWizard(parent, flags), m_project(project), m_targetSetupPage(0)
{
Q_ASSERT(project);
@@ -107,8 +107,7 @@ void ProjectLoadWizard::setupTargetPage()
m_targetSetupPage->setImportDirectoryBrowsingEnabled(true);
m_targetSetupPage->setImportDirectoryBrowsingLocation(m_project->projectDirectory());
const int targetPageId = addPage(m_targetSetupPage);
wizardProgress()->item(targetPageId)->setTitle(tr("Targets"));
addPage(m_targetSetupPage);
}
void ProjectLoadWizard::applySettings()

View File

@@ -32,7 +32,8 @@
#include "qtversionmanager.h"
#include <wizards/targetsetuppage.h>
#include <utils/wizard.h>
#include <QtGui/QWizard>
namespace Qt4ProjectManager {
class Qt4Project;
@@ -41,7 +42,7 @@ namespace Internal {
class TargetsPage;
class ProjectLoadWizard : public Utils::Wizard
class ProjectLoadWizard : public QWizard
{
Q_OBJECT
public: