JsonProjectPage: Pick right directory

Pick the correct directory when the wizard is started via the context
menu of an project node.

Change-Id: Ib2ebba5f796381217673c9030a7b279b6d764a59
Reviewed-by: Daniel Teske <daniel.teske@digia.com>
This commit is contained in:
Tobias Hunger
2014-10-24 16:13:24 +02:00
parent b9d2fd8eac
commit e42eb66f1f

View File

@@ -32,6 +32,8 @@
#include <coreplugin/documentmanager.h>
#include <utils/qtcassert.h>
#include <QDir>
#include <QVariant>
@@ -43,12 +45,9 @@ JsonProjectPage::JsonProjectPage(QWidget *parent) :
void JsonProjectPage::initializePage()
{
if (Core::DocumentManager::useProjectsDirectory()) {
setPath(Core::DocumentManager::projectsDirectory());
} else {
if (JsonWizard *wiz = qobject_cast<JsonWizard *>(wizard()))
setPath(wiz->value(QLatin1String("InitialPath")).toString());
}
JsonWizard *wiz = qobject_cast<JsonWizard *>(wizard());
QTC_ASSERT(wiz, return);
setPath(wiz->value(QLatin1String("InitialPath")).toString());
setProjectName(uniqueProjectName(path()));
}