mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-08 17:58:05 +02:00
TFloatSpinEditEx: revert changes made in #95cfa51d, since it refuses to compile on MacOS en Linux 64 bit.
This commit is contained in:
parent
79132216d6
commit
05531f1071
@ -213,12 +213,12 @@ end;
|
||||
|
||||
function TSpinEditExBase.MaxValueStored: Boolean;
|
||||
begin
|
||||
Result := not SameValue(FMaxValue, T(DefMaxValue)); //use typecast to force use of correct overload. Issue #39792
|
||||
Result := not SameValue(FMaxValue, DefMaxValue);
|
||||
end;
|
||||
|
||||
function TSpinEditExBase.MinValueStored: Boolean;
|
||||
begin
|
||||
Result := not SameValue(FMinValue, T(DefMinValue)); //use typecast to force use of correct overload. Issue #39792
|
||||
Result := not SameValue(FMinValue, DefMinValue);
|
||||
end;
|
||||
|
||||
procedure TSpinEditExBase.EditMouseWheelUp(Shift: TShiftState;
|
||||
|
Loading…
Reference in New Issue
Block a user