mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-13 23:03:31 +02:00
TAChart: Add 3-parameter-"Unused"
git-svn-id: trunk@54014 -
This commit is contained in:
parent
a84ac921d2
commit
5884ef95c3
@ -348,6 +348,7 @@ function StrToFloatDefSep(const AStr: String): Double;
|
||||
// Call this to silence 'parameter is unused' hint
|
||||
procedure Unused(const A1);
|
||||
procedure Unused(const A1, A2);
|
||||
procedure Unused(const A1, A2, A3);
|
||||
|
||||
procedure UpdateMinMax(AValue: Double; var AMin, AMax: Double); overload;
|
||||
procedure UpdateMinMax(AValue: Integer; var AMin, AMax: Integer); overload;
|
||||
@ -532,6 +533,10 @@ end;
|
||||
procedure Unused(const A1, A2);
|
||||
begin
|
||||
end;
|
||||
|
||||
procedure Unused(const A1, A2, A3);
|
||||
begin
|
||||
end;
|
||||
{$POP}
|
||||
|
||||
procedure UpdateMinMax(AValue: Double; var AMin, AMax: Double);
|
||||
|
Loading…
Reference in New Issue
Block a user