1
0
Fork 0
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:
jules 2012-11-08 13:50:25 +00:00
parent d79fcf1d32
commit 9bf10e2caa

View file

@ -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 << "; ";
}