mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Fixed Xcode exporter macro escapes for '"'
This commit is contained in:
parent
d0b6d6c025
commit
4b507cde06
1 changed files with 1 additions and 1 deletions
|
|
@ -1078,7 +1078,7 @@ public:
|
|||
String def (defines.getAllKeys()[i]);
|
||||
const String value (defines.getAllValues()[i]);
|
||||
if (value.isNotEmpty())
|
||||
def << "=" << value.replace ("\"", "\\\"");
|
||||
def << "=" << value.replace ("\"", "\\\\\\\"");
|
||||
|
||||
defsList.add ("\"" + def + "\"");
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue