mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 19:48:01 +02:00
const for TFormatSettings
This commit is contained in:
parent
a412bc39cd
commit
cb237c9008
@ -2292,7 +2292,7 @@ end;
|
|||||||
{$define FString:=AnsiString}
|
{$define FString:=AnsiString}
|
||||||
|
|
||||||
|
|
||||||
Function FloatToTextFmt(Buffer: PChar; Value: Extended; format: PChar; FormatSettings : TFormatSettings): Integer;
|
Function FloatToTextFmt(Buffer: PChar; Value: Extended; format: PChar; const FormatSettings : TFormatSettings): Integer;
|
||||||
|
|
||||||
begin
|
begin
|
||||||
Result:=IntFloatToTextFmt(Buffer,Value,fvExtended,Format,FormatSettings);
|
Result:=IntFloatToTextFmt(Buffer,Value,fvExtended,Format,FormatSettings);
|
||||||
|
@ -234,7 +234,7 @@ function TryStrToCurr(const S: string;Out Value : Currency; Const FormatSettings
|
|||||||
function StrToCurrDef(const S: string; Default : Currency): Currency;
|
function StrToCurrDef(const S: string; Default : Currency): Currency;
|
||||||
function StrToCurrDef(const S: string; Default : Currency; Const FormatSettings: TFormatSettings): Currency;
|
function StrToCurrDef(const S: string; Default : Currency; Const FormatSettings: TFormatSettings): Currency;
|
||||||
|
|
||||||
Function FloatToTextFmt(Buffer: PChar; Value: Extended; format: PChar; FormatSettings : TFormatSettings): Integer;
|
Function FloatToTextFmt(Buffer: PChar; Value: Extended; format: PChar; const FormatSettings : TFormatSettings): Integer;
|
||||||
Function FloatToTextFmt(Buffer: PChar; Value: Extended; format: PChar): Integer;
|
Function FloatToTextFmt(Buffer: PChar; Value: Extended; format: PChar): Integer;
|
||||||
Procedure FloatToDecimal(Out Result: TFloatRec; const Value; ValueType: TFloatValue; Precision, Decimals : integer);
|
Procedure FloatToDecimal(Out Result: TFloatRec; const Value; ValueType: TFloatValue; Precision, Decimals : integer);
|
||||||
Procedure FloatToDecimal(Out Result: TFloatRec; Value: Extended; Precision, Decimals : integer);
|
Procedure FloatToDecimal(Out Result: TFloatRec; Value: Extended; Precision, Decimals : integer);
|
||||||
|
Loading…
Reference in New Issue
Block a user