From 47354424245bbfbe57adefe095cbe04e10d0cef9 Mon Sep 17 00:00:00 2001 From: jules Date: Tue, 22 May 2012 16:30:27 +0100 Subject: [PATCH] Another typo fix. --- extras/Introjucer/Source/Application/jucer_CommandLine.cpp | 2 +- extras/Introjucer/Source/Project/jucer_Project.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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)