data: template argument handling
* storing template argument relations for cases where at lease one of these (template class, template argument) is defined inside the parsed project files. * prevented storage from saving the same source location multiple times.
This commit is contained in:
@@ -113,11 +113,11 @@ ApplicationSettings::ApplicationSettings()
|
||||
|
||||
std::vector<FilePath> ApplicationSettings::getRecentProjects() const
|
||||
{
|
||||
std::vector<FilePath> loadedRecentProjects = getPathValues("user/recent_projects/recent_project");
|
||||
std::vector<FilePath> recentProjects;
|
||||
for(FilePath project : loadedRecentProjects)
|
||||
std::vector<FilePath> loadedRecentProjects = getPathValues("user/recent_projects/recent_project");
|
||||
for (FilePath project: loadedRecentProjects)
|
||||
{
|
||||
if(project.exists())
|
||||
if (project.exists())
|
||||
{
|
||||
recentProjects.push_back(project);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user