diff --git a/src/plugins/projectexplorer/projectexplorer.cpp b/src/plugins/projectexplorer/projectexplorer.cpp index fb4d5579c19..c87981803e2 100644 --- a/src/plugins/projectexplorer/projectexplorer.cpp +++ b/src/plugins/projectexplorer/projectexplorer.cpp @@ -909,16 +909,8 @@ void ProjectExplorerPlugin::newProject() if (debug) qDebug() << "ProjectExplorerPlugin::newProject"; - QString defaultLocation; - if (currentProject()) { - QDir dir(currentProject()->projectDirectory()); - dir.cdUp(); - defaultLocation = dir.absolutePath(); - } - Core::ICore::instance()->showNewItemDialog(tr("New Project", "Title of dialog"), - Core::IWizard::wizardsOfKind(Core::IWizard::ProjectWizard), - defaultLocation); + Core::IWizard::wizardsOfKind(Core::IWizard::ProjectWizard)); updateActions(); }