Patch from bug #19801 TFloatSpinEdit: OnChange not called when changing Value by code

git-svn-id: trunk@31803 -
This commit is contained in:
sekelsenmat 2011-07-26 09:10:40 +00:00
parent abae480a70
commit 2f54837507

View File

@ -53,12 +53,8 @@ var
begin
PrevValue := FValue;
FValueChanged := True;
if Value <> PrevValue then
begin
FValueEmpty := False;
inherited;
end;
if Value <> PrevValue then FValueEmpty := False;
inherited;
end;
procedure TCustomFloatSpinEdit.SetMaxValue(const AValue: Double);