mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-22 01:34:21 +00:00
Introjucer: Fixed escaping of scripts in Xcode exporter
This commit is contained in:
parent
898080d187
commit
581f6d26de
1 changed files with 1 additions and 1 deletions
|
|
@ -910,7 +910,7 @@ private:
|
|||
const Identifier propertyName (o.getPropertyName(j));
|
||||
String val (o.getProperty (propertyName).toString());
|
||||
|
||||
if (val.isEmpty() || (val.containsAnyOf (" \t;<>()=,&+-_@~\r\n")
|
||||
if (val.isEmpty() || (val.containsAnyOf (" \t;<>()=,&+-_@~\r\n\\")
|
||||
&& ! (val.trimStart().startsWithChar ('(')
|
||||
|| val.trimStart().startsWithChar ('{'))))
|
||||
val = "\"" + val + "\"";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue