From c35fa096f0adf66b94a11436a2d01b9d7da735c1 Mon Sep 17 00:00:00 2001 From: jesus Date: Sat, 8 Mar 2014 04:25:20 +0000 Subject: [PATCH] LazReport, also process user functions while processing aggregate functions, issue #25803 git-svn-id: trunk@44374 - --- components/lazreport/source/lr_class.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/lazreport/source/lr_class.pas b/components/lazreport/source/lr_class.pas index 6a696f13e7..fe67fa3ee7 100644 --- a/components/lazreport/source/lr_class.pas +++ b/components/lazreport/source/lr_class.pas @@ -9210,7 +9210,7 @@ begin if not DoInterpFunction(aName, p1, p2, p3, val) then begin - if Assigned(AggrBand) and AggrBand.Visible then + if Assigned(AggrBand){ and AggrBand.Visible } then DoUserFunction(aName, p1, p2, p3, val); end; end;