mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-27 04:08:32 +02:00
TAChart: Fix compilation on non-windows platforms
git-svn-id: trunk@30218 -
This commit is contained in:
parent
e0db061157
commit
5a2b851dcd
@ -355,9 +355,11 @@ begin
|
|||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TSVGDrawer.WriteStr(const AString: String);
|
procedure TSVGDrawer.WriteStr(const AString: String);
|
||||||
|
var
|
||||||
|
le: String = LineEnding;
|
||||||
begin
|
begin
|
||||||
FStream.WriteBuffer(AString[1], Length(AString));
|
FStream.WriteBuffer(AString[1], Length(AString));
|
||||||
FStream.WriteBuffer(LineEnding[1], Length(LineEnding));
|
FStream.WriteBuffer(le[1], Length(le));
|
||||||
end;
|
end;
|
||||||
|
|
||||||
end.
|
end.
|
||||||
|
Loading…
Reference in New Issue
Block a user