mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 15:37:51 +02:00
LazControl: LazIntegerEdit, clean up / comments
This commit is contained in:
parent
f356184e3b
commit
cab5b39fe0
@ -11,10 +11,6 @@ uses
|
||||
and redirect the calls
|
||||
*)
|
||||
|
||||
const
|
||||
Min_Limit = low(Int64);
|
||||
Max_Limit = High(Int64);
|
||||
|
||||
type
|
||||
|
||||
TLazIntegerEditBaseChangeEvent = procedure(ASender: TObject; ACurrentBase: Integer; var ANewBase: integer; var APrefix) of object;
|
||||
@ -22,6 +18,9 @@ type
|
||||
{ TLazIntegerEditGen }
|
||||
|
||||
generic TLazIntegerEditGen<T: TCustomEdit> = class(T)
|
||||
protected const
|
||||
Min_Limit = low(Int64);
|
||||
Max_Limit = High(Int64);
|
||||
private
|
||||
FAllowMinus: Boolean;
|
||||
FAllowPlus: Boolean;
|
||||
@ -191,6 +190,7 @@ function QWord2Str(N: QWord; Base: Byte): string;
|
||||
|
||||
implementation
|
||||
|
||||
// from StrUtils.Dec2Numb / Numb2Dec
|
||||
function QWord2Str(N: QWord; Base: Byte): string;
|
||||
var
|
||||
C: Integer;
|
||||
|
Loading…
Reference in New Issue
Block a user