mirror of https://gitlab.com/basile.b/dexed.git
remove dmd checker, lead to crash in ctor, about box indicates status since a while
This commit is contained in:
parent
b375257dbd
commit
521d1e920f
|
@ -283,7 +283,6 @@ type
|
|||
|
||||
//Init - Fina
|
||||
procedure getCMdParams;
|
||||
procedure checkCompilo;
|
||||
procedure InitMRUs;
|
||||
procedure InitWidgets;
|
||||
procedure InitDocking;
|
||||
|
@ -802,8 +801,6 @@ begin
|
|||
OnDragDrop:= @ddHandler.DragDrop;
|
||||
OnDragOver:= @ddHandler.DragOver;
|
||||
//
|
||||
checkCompilo;
|
||||
//
|
||||
updateMainMenuProviders;
|
||||
EntitiesConnector.forceUpdate;
|
||||
fSymStringExpander:= getSymStringExpander;
|
||||
|
@ -815,17 +812,6 @@ begin
|
|||
fInitialized := true;
|
||||
end;
|
||||
|
||||
procedure TCEMainForm.checkCompilo;
|
||||
const
|
||||
msg = 'Coedit requires DMD to be setup on this system' + LineEnding +
|
||||
'If DMD is setup please add it to the system PATH variable before using Coedit';
|
||||
begin
|
||||
if exeInSysPath('dmd') then
|
||||
exit;
|
||||
dlgOkError(msg);
|
||||
close;
|
||||
end;
|
||||
|
||||
procedure TCEMainForm.getCMdParams;
|
||||
var
|
||||
value: string;
|
||||
|
|
Loading…
Reference in New Issue