You've already forked lazarus-ccr
LazBarcodes: Fix Telepen max length error.
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@8212 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -75,7 +75,7 @@ var
|
||||
i: Integer;
|
||||
begin
|
||||
for i := 1 to Length(ASource) do
|
||||
if ASource[i] > #126 then
|
||||
if ASource[i] > #127 then // wp: was #126, but this is against doc.
|
||||
begin
|
||||
// Cannot encode extended ASCII
|
||||
ASymbol^.SetErrorText('Invalid characters in input data.');
|
||||
|
Reference in New Issue
Block a user