mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-23 04:39:36 +02:00
LazReport, fix stack overflow problem when using column footer, from Tony Whyman, issue #27100
git-svn-id: trunk@47024 -
This commit is contained in:
parent
c0564de3f2
commit
9ec6293a92
@ -6490,7 +6490,8 @@ begin
|
||||
DebugLn('ay+ColFoot.dy+ady=%d CurBottomY=%d',[ay+Bands[btColumnFooter].dy+ady,CurBottomY]);
|
||||
{$ENDIF}
|
||||
if not RowsLayout then begin
|
||||
if ay + Bands[btColumnFooter].dy + ady > CurBottomY then
|
||||
if (Parent.Bands[btColumnFooter] <> self) and
|
||||
(ay + Bands[btColumnFooter].dy + ady > CurBottomY) then
|
||||
begin
|
||||
if not PBreak then
|
||||
NewColumn(Self);
|
||||
|
Loading…
Reference in New Issue
Block a user