mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-10 13:39:14 +02:00
codetools: added dbgs overload for qword
git-svn-id: trunk@12677 -
This commit is contained in:
parent
7a6eecdba3
commit
41008134a5
@ -258,6 +258,7 @@ procedure DbgOut(const s1,s2,s3,s4,s5,s6: string);
|
|||||||
function DbgS(const c: char): string; overload;
|
function DbgS(const c: char): string; overload;
|
||||||
function DbgS(const c: cardinal): string; overload;
|
function DbgS(const c: cardinal): string; overload;
|
||||||
function DbgS(const i: integer): string; overload;
|
function DbgS(const i: integer): string; overload;
|
||||||
|
function DbgS(const i: QWord): string; overload;
|
||||||
function DbgS(const i: int64): string; overload;
|
function DbgS(const i: int64): string; overload;
|
||||||
function DbgS(const r: TRect): string; overload;
|
function DbgS(const r: TRect): string; overload;
|
||||||
function DbgS(const p: TPoint): string; overload;
|
function DbgS(const p: TPoint): string; overload;
|
||||||
@ -2022,6 +2023,11 @@ begin
|
|||||||
Result:=IntToStr(i);
|
Result:=IntToStr(i);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
function DbgS(const i: QWord): string;
|
||||||
|
begin
|
||||||
|
Result:=IntToStr(i);
|
||||||
|
end;
|
||||||
|
|
||||||
function DbgS(const i: int64): string;
|
function DbgS(const i: int64): string;
|
||||||
begin
|
begin
|
||||||
Result:=IntToStr(i);
|
Result:=IntToStr(i);
|
||||||
|
Loading…
Reference in New Issue
Block a user