ui: Fixed path checking in project setup wizzard

This commit is contained in:
Eberhard Graether
2016-04-21 16:11:00 +02:00
parent b5bcabb494
commit 526f966356
7 changed files with 35 additions and 29 deletions
+3 -3
View File
@@ -67,14 +67,14 @@ public:
std::string getProjectName() const;
void setProjectName(const std::string& name);
std::string getProjectFileLocation() const;
void setProjectFileLocation(const std::string& location);
FilePath getProjectFileLocation() const;
void setProjectFileLocation(const FilePath& location);
private:
void makePathsAbsolute(std::vector<FilePath>& paths) const;
std::string m_projectName;
std::string m_projectFileLocation;
FilePath m_projectFileLocation;
static std::shared_ptr<ProjectSettings> s_instance;
};