You've already forked lazarus-ccr
svn classes: fixed bug in reading properties
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@237 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -642,7 +642,8 @@ begin
|
|||||||
// try for a multiline property
|
// try for a multiline property
|
||||||
inc(i);
|
inc(i);
|
||||||
while (i<Lines.Count) do begin
|
while (i<Lines.Count) do begin
|
||||||
if (length(Lines[i])>=2) and (copy(Lines[i],1,2)=' ') then begin
|
if ((length(Lines[i])>=2) and (copy(Lines[i],1,2)=' '))
|
||||||
|
or (copy(Lines[i], 1, length(PropertiesOn))=PropertiesOn) then begin
|
||||||
// new property, unget line
|
// new property, unget line
|
||||||
dec(i);
|
dec(i);
|
||||||
break;
|
break;
|
||||||
|
Reference in New Issue
Block a user