From 9077ba817df11ad0105b9949024504c9e12c37d1 Mon Sep 17 00:00:00 2001 From: jules Date: Fri, 28 Sep 2012 11:15:07 +0100 Subject: [PATCH] Introjucer: fix for Xcode filenames containing @ signs. --- .../Source/Project Saving/jucer_ProjectExport_XCode.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extras/Introjucer/Source/Project Saving/jucer_ProjectExport_XCode.h b/extras/Introjucer/Source/Project Saving/jucer_ProjectExport_XCode.h index 528d8f63a2..26685a2825 100644 --- a/extras/Introjucer/Source/Project Saving/jucer_ProjectExport_XCode.h +++ b/extras/Introjucer/Source/Project Saving/jucer_ProjectExport_XCode.h @@ -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();