ui: Added Java project setup UI

This commit is contained in:
Eberhard Graether
2016-08-17 13:12:26 +02:00
parent 566cface6c
commit a3001b2b72
30 changed files with 329 additions and 176 deletions
+2 -2
View File
@@ -64,7 +64,7 @@ void Project::refresh()
{
if (allowsRefresh())
{
bool loadedSettings = getProjectSettings()->load();
bool loadedSettings = getProjectSettings()->reload();
updateFileManager(m_fileManager);
@@ -112,7 +112,7 @@ Project::Project(StorageAccessProxy* storageAccessProxy)
void Project::load()
{
const std::shared_ptr<ProjectSettings> projectSettings = getProjectSettings();
bool loadedSettings = projectSettings->load();
bool loadedSettings = projectSettings->reload();
if (loadedSettings)
{
const FilePath projectSettingsPath = projectSettings->getFilePath();