diff --git a/extras/Introjucer/Source/Application/jucer_CommandLine.cpp b/extras/Introjucer/Source/Application/jucer_CommandLine.cpp index 2ce7a87697..813f5298da 100644 --- a/extras/Introjucer/Source/Application/jucer_CommandLine.cpp +++ b/extras/Introjucer/Source/Application/jucer_CommandLine.cpp @@ -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()) { diff --git a/extras/Introjucer/Source/Project/jucer_Project.cpp b/extras/Introjucer/Source/Project/jucer_Project.cpp index 52aa618fab..945d930d3e 100644 --- a/extras/Introjucer/Source/Project/jucer_Project.cpp +++ b/extras/Introjucer/Source/Project/jucer_Project.cpp @@ -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)