You've already forked lazarus-ccr
Lazstats: Refactor LatinSpecsUnit and latinSqrsUnit.
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@7447 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -5,10 +5,12 @@ unit Utils;
|
||||
interface
|
||||
|
||||
uses
|
||||
Classes, SysUtils, StdCtrls;
|
||||
Classes, SysUtils, StdCtrls, Dialogs;
|
||||
|
||||
function AnySelected(AListbox: TListBox): Boolean;
|
||||
|
||||
procedure ErrorMsg(const AMsg: String);
|
||||
|
||||
procedure Exchange(var a, b: Double); overload;
|
||||
procedure Exchange(var a, b: Integer); overload;
|
||||
procedure Exchange(var a, b: String); overload;
|
||||
@ -28,6 +30,11 @@ begin
|
||||
end;
|
||||
end;
|
||||
|
||||
procedure ErrorMsg(const AMsg: String);
|
||||
begin
|
||||
MessageDlg(AMsg, mtError, [mbOK], 0);
|
||||
end;
|
||||
|
||||
procedure Exchange(var a, b: Double);
|
||||
var
|
||||
tmp: Double;
|
||||
|
Reference in New Issue
Block a user