Subversion Repositories oidplus

Compare Revisions

Regard whitespace Rev 748 → Rev 747

/trunk_dos/STRLIST.PAS
3,7 → 3,7
(************************************************)
(* STRLIST.PAS *)
(* Author: Daniel Marschall *)
(* Revision: 2022-02-19 *)
(* Revision: 2022-02-16 *)
(* License: Apache 2.0 *)
(* This file contains: *)
(* - StringList implementation for Turbo Pascal *)
194,11 → 194,8
tmp: PStringList;
i: integer;
begin
if (idx < 0) or (idx > ListCount(list)-1) then
begin
ListGetElement := '';
Exit;
end;
if idx < 0 then exit;
if idx > ListCount(list)-1 then exit;
 
tmp := list;
i := 0;