Browse Source

* Fix bug #33343: group footer reference to group header was set incorrectly when reading from file

git-svn-id: trunk@38440 -
michael 7 years ago
parent
commit
eecce3d8f4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/fcl-report/src/fpreport.pp

+ 1 - 1
packages/fcl-report/src/fpreport.pp

@@ -8780,7 +8780,7 @@ begin
     if Not (C is TFPReportCustomGroupHeaderBand) then
       Report.AddReference(Self,'GroupHeader',S)
     else
-      FGroupHeader := TFPReportCustomGroupHeaderBand(c);
+      GroupHeader := TFPReportCustomGroupHeaderBand(c);
     end;
 end;