mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-20 01:14:20 +00:00
Another typo fix.
This commit is contained in:
parent
805fb36371
commit
4735442424
2 changed files with 2 additions and 2 deletions
|
|
@ -83,7 +83,7 @@ namespace
|
|||
<< projectFile.getFullPathName() << std::endl;
|
||||
|
||||
String error (justSaveResources ? proj.saveResourcesOnly (projectFile)
|
||||
: proj.saveProject (projectFile, false));
|
||||
: proj.saveProject (projectFile, true));
|
||||
|
||||
if (error.isNotEmpty())
|
||||
{
|
||||
|
|
|
|||
|
|
@ -232,7 +232,7 @@ const String Project::loadDocument (const File& file)
|
|||
|
||||
const String Project::saveDocument (const File& file)
|
||||
{
|
||||
return saveProject (file, true);
|
||||
return saveProject (file, false);
|
||||
}
|
||||
|
||||
String Project::saveProject (const File& file, bool isCommandLineApp)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue