mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-11-04 17:59:33 +01:00
LazReport, HideZeroValues should hide float values too, fix by Velissariou Costas, issue #25934
git-svn-id: trunk@44736 -
This commit is contained in:
parent
a49efad04b
commit
c780ddd0a7
@ -9180,8 +9180,9 @@ begin
|
||||
|
||||
if Assigned(CurView) and (CurView.Flags and flHideZeros <> 0) then
|
||||
begin
|
||||
if TVarData(aValue).VType in [varSmallInt, varInteger, varCurrency, varDecimal, varShortInt, varByte, varWord, varLongWord,
|
||||
varInt64, varQWord] then
|
||||
if TVarData(aValue).VType in [varSmallInt, varInteger, varCurrency,
|
||||
varDecimal, varShortInt, varByte, varWord, varLongWord, varInt64,
|
||||
varQWord, varDouble, varSingle] then
|
||||
begin
|
||||
if aValue = 0 then
|
||||
aValue:='';
|
||||
|
||||
Loading…
Reference in New Issue
Block a user