projectgroups: store filenames always with / separators, issue #30793

git-svn-id: trunk@53232 -
This commit is contained in:
mattias 2016-10-26 16:53:38 +00:00
parent e5eb945c49
commit 2842642530

View File

@ -897,6 +897,7 @@ begin
if aTarget.Removed then continue;
APath:=Format(ARoot+'/Targets/Target%d/',[ACount]);
RelativeFileName:=ExtractRelativepath(TargetPath,aTarget.FileName);
StringReplace(RelativeFileName,'\','/',[rfReplaceAll]); // normalize, so that files look the same x-platform, for less svn changes
XMLConfig.SetDeleteValue(APath+'FileName',RelativeFileName,'');
aTarget.SaveGroupSettings(XMLConfig,APath);
Inc(ACount);