mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-16 00:34:19 +00:00
A few C++11 modernisations and comment corrections
This commit is contained in:
parent
e253b8bea1
commit
44cd80969d
25 changed files with 43 additions and 45 deletions
|
|
@ -400,7 +400,7 @@ bool Project::hasProjectBeenModified()
|
|||
File Project::resolveFilename (String filename) const
|
||||
{
|
||||
if (filename.isEmpty())
|
||||
return File();
|
||||
return {};
|
||||
|
||||
filename = replacePreprocessorDefs (getPreprocessorDefs(), filename);
|
||||
|
||||
|
|
@ -863,7 +863,7 @@ File Project::Item::getFile() const
|
|||
if (isFile())
|
||||
return project.resolveFilename (state [Ids::file].toString());
|
||||
|
||||
return File();
|
||||
return {};
|
||||
}
|
||||
|
||||
void Project::Item::setFile (const File& file)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue