You've already forked lazarus-ccr
jvcllaz: Less hints and warnings.
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@7901 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -1300,7 +1300,7 @@ function FindUnusedFileName(FileName: string; const FileExt: string; NumberPrefi
|
||||
implementation
|
||||
|
||||
uses
|
||||
Math, Variants, LazFileUtils, typinfo, LclStrConsts,
|
||||
Math, Variants, LazFileUtils, typinfo,
|
||||
JvConsts;
|
||||
|
||||
(******************** NOT CONVERTED
|
||||
@ -1589,7 +1589,7 @@ end;
|
||||
StrToFloatDefIgnoreInvalidCharacters with some improvements made to decimal
|
||||
separator handling.
|
||||
}
|
||||
function _JvSafeStrToFloat(const Str: string; aDecimalSeparator: Char; var OutValue: Extended): Boolean;
|
||||
function _JvSafeStrToFloat(const Str: string; aDecimalSeparator: Char; out OutValue: Extended): Boolean;
|
||||
var
|
||||
LStr: String;
|
||||
I: Integer;
|
||||
@ -6791,7 +6791,8 @@ var
|
||||
I, KeyLen: Integer;
|
||||
C: Char;
|
||||
B: Byte;
|
||||
Utf8Result, Utf8Key: UTF8String;
|
||||
Utf8Result: UTF8String = '';
|
||||
Utf8Key: UTF8String;
|
||||
begin
|
||||
Result := '';
|
||||
Utf8Key := UTF8Encode(Key);
|
||||
|
Reference in New Issue
Block a user