mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Projucer: Fixed a bug escaping Xcode project settings starting or ending with quotes
This commit is contained in:
parent
faf5ed4023
commit
282ad8fa9c
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue