Browse Source

Introjucer: fix for Xcode filenames containing @ signs.

tags/2021-05-28
jules 13 years ago
parent
commit
9077ba817d
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

@@ -838,7 +838,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.quoted();


Loading…
Cancel
Save