From 98c4e38d37c60b36db09eff2bfabad740e5b5780 Mon Sep 17 00:00:00 2001 From: blikblum Date: Tue, 3 Apr 2012 09:59:51 +0000 Subject: [PATCH] lazreport: remove case conversion when calling GetVariableValue (OnGetValue) in CalcOPZ. Redo rev 36490. This time without collateral effects due to changes in rev 36539 #fea7df6a87 git-svn-id: trunk@36540 - --- components/lazreport/source/lr_pars.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/lazreport/source/lr_pars.pas b/components/lazreport/source/lr_pars.pas index 29315318c1..192fe171ff 100644 --- a/components/lazreport/source/lr_pars.pas +++ b/components/lazreport/source/lr_pars.pas @@ -263,7 +263,7 @@ begin if Assigned(FOnGetValue) then begin nm[st] := Null; - FOnGetValue(AnsiUpperCase(s1), nm[st]); + FOnGetValue(s1, nm[st]); end; end; i := k;