Skip to content

Commit 7b6d5b2

Browse files
committed
Support for Cubic Meters/Sec
1 parent 689048c commit 7b6d5b2

File tree

5 files changed

+832
-8
lines changed

5 files changed

+832
-8
lines changed

Diff for: epanet2w/Ddisclaimer.dfm

+2-2
Original file line numberDiff line numberDiff line change
@@ -229,8 +229,8 @@ object DisclaimerForm: TDisclaimerForm
229229
'We recommend that this version be used only for testing '
230230
'and not for any other purposes.'
231231
''
232-
'If you require a stable and reliable version of EPANET, please '
233-
'use the standard release of the software.'
232+
'If you require a stable and reliable version of EPANET, '
233+
'please use the standard release of the software.'
234234
''
235235
'The developers of this software are not responsible for any '
236236
'damage or loss caused by the use of this development '

Diff for: epanet2w/Epanet2w.dpr

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
program Epanet2w;
22

3+
4+
35
uses
46
WinProcs,
57
Forms,
@@ -56,7 +58,8 @@ uses
5658
Dchart in 'Dchart.pas' {ChartOptionsDlg},
5759
Vcl.Themes,
5860
Vcl.Styles,
59-
Dsource in 'Dsource.pas' {SourceForm};
61+
Dsource in 'Dsource.pas' {SourceForm},
62+
Ddisclaimer in 'Ddisclaimer.pas' {DisclaimerForm};
6063

6164
{$R *.RES}
6265

@@ -67,5 +70,6 @@ begin
6770
Application.CreateForm(TFindForm, FindForm);
6871
Application.CreateForm(TQueryForm, QueryForm);
6972
Application.CreateForm(TOVMapForm, OVMapForm);
73+
Application.CreateForm(TDisclaimerForm, DisclaimerForm);
7074
Application.Run;
7175
end.

0 commit comments

Comments
 (0)