Browse Source

Introjucer: Xcode fix for properties which end in a quote.

tags/2021-05-28
jules 13 years ago
parent
commit
9bf10e2caa
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      extras/Introjucer/Source/Project Saving/jucer_ProjectExport_XCode.h

+ 1
- 1
extras/Introjucer/Source/Project Saving/jucer_ProjectExport_XCode.h 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 << "; ";
}


Loading…
Cancel
Save