mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-17 00:44:19 +00:00
Introjucer: Xcode fix for properties which end in a quote.
This commit is contained in:
parent
d79fcf1d32
commit
9bf10e2caa
1 changed files with 1 additions and 1 deletions
|
|
@ -862,7 +862,7 @@ private:
|
|||
if (val.isEmpty() || (val.containsAnyOf (" \t;<>()=,&+-_@~\r\n")
|
||||
&& ! (val.trimStart().startsWithChar ('(')
|
||||
|| val.trimStart().startsWithChar ('{'))))
|
||||
val = val.quoted();
|
||||
val = "\"" + val + "\"";
|
||||
|
||||
output << propertyName.toString() << " = " << val << "; ";
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue