Update SynEdit component to their revision 114, and add Delphi XE5 packages.

This commit is contained in:
Ansgar Becker
2013-10-16 18:05:33 +00:00
parent 34c420cbce
commit 077b119b66
17 changed files with 3089 additions and 47 deletions

View File

@ -3162,7 +3162,7 @@ var
if (Length(BOM) <> Length(UTF8BOM)) or
not CompareMem(@BOM[0], @UTF8BOM[0], Length(UTF8BOM))
then
Stream.Seek(-Length(BOM), soFromCurrent)
Stream.Seek(-Length(BOM), soCurrent)
else
Result := True;
end;
@ -3173,7 +3173,7 @@ var
if (Length(BOM) <> Length(UTF16BOMLE)) or
not CompareMem(@BOM[0], @UTF16BOMLE[0], Length(UTF16BOMLE))
then
Stream.Seek(-Length(BOM), soFromCurrent)
Stream.Seek(-Length(BOM), soCurrent)
else
Result := True;
end;
@ -3184,7 +3184,7 @@ var
if (Length(BOM) <> Length(UTF16BOMBE)) or
not CompareMem(@BOM[0], @UTF16BOMBE[0], Length(UTF16BOMBE))
then
Stream.Seek(-Length(BOM), soFromCurrent)
Stream.Seek(-Length(BOM), soCurrent)
else
Result := True;
end;