You've already forked lazarus-ccr
LazStats: some more refactoring for LatinSpecsUnits, complete help for this form.
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@7448 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -10,6 +10,7 @@ uses
|
||||
function AnySelected(AListbox: TListBox): Boolean;
|
||||
|
||||
procedure ErrorMsg(const AMsg: String);
|
||||
procedure ErrorMsg(const AMsg: String; const AParams: array of const);
|
||||
|
||||
procedure Exchange(var a, b: Double); overload;
|
||||
procedure Exchange(var a, b: Integer); overload;
|
||||
@ -35,6 +36,11 @@ begin
|
||||
MessageDlg(AMsg, mtError, [mbOK], 0);
|
||||
end;
|
||||
|
||||
procedure ErrorMsg(const AMsg: String; const AParams: array of const);
|
||||
begin
|
||||
ErrorMsg(Format(AMsg, AParams));
|
||||
end;
|
||||
|
||||
procedure Exchange(var a, b: Double);
|
||||
var
|
||||
tmp: Double;
|
||||
|
Reference in New Issue
Block a user