Browse Source

Projucer: Fixed a bug escaping Xcode project settings starting or ending with quotes

v6.1.6
ed 4 years ago
parent
commit
282ad8fa9c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_Xcode.h

+ 1
- 1
extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_Xcode.h View File

@@ -2767,7 +2767,7 @@ private:
if (val.isEmpty() || (val.containsAnyOf (" \t;<>()=,&+-@~\r\n\\#%^`*")
&& ! (val.trimStart().startsWithChar ('(')
|| val.trimStart().startsWithChar ('{'))))
val = val.quoted();
val = "\"" + val + "\"";
auto content = propertyName.toString() + " = " + val + ";";


Loading…
Cancel
Save