diff --git a/src/plugins/projectexplorer/projectexplorer.cpp b/src/plugins/projectexplorer/projectexplorer.cpp
index fb4d5579c1951e88261611df854155113bf329ea..c87981803e2d92a4cdf0ad45a7cdba90f9302a8f 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();
 }