* Fix length size for non-short string types

git-svn-id: trunk@17961 -
This commit is contained in:
pierre 2011-07-08 16:21:28 +00:00
parent f23b265ce1
commit 0ca127b97e

View File

@ -1932,25 +1932,25 @@ begin
ibwidestringdef :
begin
readcommondef('WideString definition',defoptions);
writeln(space,' Length : ',getlongint);
writeln(space,' Length : ',getaint);
end;
ibunicodestringdef :
begin
readcommondef('UnicodeString definition',defoptions);
writeln(space,' Length : ',getlongint);
writeln(space,' Length : ',getaint);
end;
ibansistringdef :
begin
readcommondef('AnsiString definition',defoptions);
writeln(space,' Length : ',getlongint);
writeln(space,' Length : ',getaint);
end;
iblongstringdef :
begin
readcommondef('Longstring definition',defoptions);
writeln(space,' Length : ',getlongint);
writeln(space,' Length : ',getaint);
end;
ibrecorddef :