mirror of https://gitlab.com/basile.b/dexed.git
fix, warning message typos
This commit is contained in:
parent
40b7cbe126
commit
c8240766e7
|
@ -1630,7 +1630,7 @@ end;
|
||||||
procedure TCEMainForm.mruProjItemClick(Sender: TObject);
|
procedure TCEMainForm.mruProjItemClick(Sender: TObject);
|
||||||
begin
|
begin
|
||||||
if fProject <> nil then if fProject.modified then if dlgOkCancel(
|
if fProject <> nil then if fProject.modified then if dlgOkCancel(
|
||||||
'The latest mdofifications are not saved, continue ?')
|
'The project modifications are not saved, continue ?')
|
||||||
= mrCancel then exit;
|
= mrCancel then exit;
|
||||||
openProj(TMenuItem(Sender).Hint);
|
openProj(TMenuItem(Sender).Hint);
|
||||||
end;
|
end;
|
||||||
|
@ -1638,7 +1638,7 @@ end;
|
||||||
procedure TCEMainForm.actProjNewExecute(Sender: TObject);
|
procedure TCEMainForm.actProjNewExecute(Sender: TObject);
|
||||||
begin
|
begin
|
||||||
if fProject <> nil then if fProject.modified then if dlgOkCancel(
|
if fProject <> nil then if fProject.modified then if dlgOkCancel(
|
||||||
'The latest mdofifications are not saved, continue ?')
|
'The project modifications are not saved, continue ?')
|
||||||
= mrCancel then exit;
|
= mrCancel then exit;
|
||||||
closeProj;
|
closeProj;
|
||||||
newProj;
|
newProj;
|
||||||
|
@ -1648,9 +1648,8 @@ procedure TCEMainForm.actProjCloseExecute(Sender: TObject);
|
||||||
begin
|
begin
|
||||||
if fProject = nil then exit;
|
if fProject = nil then exit;
|
||||||
if fProject.modified then if dlgOkCancel(
|
if fProject.modified then if dlgOkCancel(
|
||||||
'The latest mdofifications are not saved, continue ?')
|
'The project modifications are not saved, continue ?')
|
||||||
= mrCancel then exit;
|
= mrCancel then exit;
|
||||||
|
|
||||||
closeProj;
|
closeProj;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue