Merged revision(s) 52175 #1a75fc1249 from trunk:

LazReport, fix AV on changing band height
........

git-svn-id: branches/fixes_1_6@52189 -
This commit is contained in:
maxim 2016-04-13 22:39:02 +00:00
parent 0eb8bc8895
commit 1c99a2ddbb

View File

@ -5481,7 +5481,8 @@ end;
procedure TfrBandView.SetHeight(const AValue: Double);
begin
inherited SetHeight(AValue);
Parent.dy := Round(Avalue);
if Assigned(Parent) then
Parent.dy := Round(Avalue);
end;
procedure TfrBandView.SetVisible(AValue: Boolean);