Skip to content
Snippets Groups Projects
Commit f996b246 authored by Tobias Hunger's avatar Tobias Hunger
Browse files

Remove the side widget of the ProjectLoadWizard

We only have one page there, so there is no need for the
side widget.
parent aca07a08
No related branches found
No related tags found
No related merge requests found
......@@ -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()
......
......@@ -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:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment