iphonelazext: fix wrong SDK selection. Fixed Xcode project updates

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@1151 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
skalogryz
2010-02-01 21:47:52 +00:00
parent 22cdfc0574
commit 3d1414df44
4 changed files with 20 additions and 18 deletions

View File

@@ -244,8 +244,11 @@ begin
]);
if FileExists(InfoFileName) then DeleteFile(InfoFileName);
fs:=TFileStream.Create(InfoFileName, fmCreate or fmOpenWrite);
if s<>'' then fs.Write(s[1], length(s));
fs.Free;
try
if s<>'' then fs.Write(s[1], length(s));
finally
fs.Free;
end;
end;
end.