mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-19 01:19:22 +02:00
* Fix some warnings, add TLongintField alias
This commit is contained in:
parent
574be89907
commit
791113663a
@ -496,6 +496,8 @@ type
|
||||
property MinValue: Longint read FMinValue write SetMinValue default 0;
|
||||
end;
|
||||
|
||||
TLongintField = TIntegerField; // IDE creates TLongintField;
|
||||
|
||||
{ TLargeintField }
|
||||
|
||||
TLargeintField = class(TNumericField)
|
||||
@ -5456,6 +5458,7 @@ procedure TField.DefineProperties(Filer: TFiler);
|
||||
|
||||
procedure IgnoreWrite(Writer: TWriter);
|
||||
begin
|
||||
if writer=Nil then;
|
||||
end;
|
||||
|
||||
begin
|
||||
@ -8905,6 +8908,7 @@ begin
|
||||
else
|
||||
Result:=FValue;
|
||||
end;
|
||||
|
||||
Function TParam.GetDisplayName: string;
|
||||
begin
|
||||
if (FName<>'') then
|
||||
@ -9208,4 +9212,6 @@ begin
|
||||
inherited;
|
||||
end;
|
||||
|
||||
Initialization
|
||||
RegisterClass(TLongintField);
|
||||
end.
|
||||
|
Loading…
Reference in New Issue
Block a user