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
|
//Init - Fina
|
||||||
procedure getCMdParams;
|
procedure getCMdParams;
|
||||||
procedure checkCompilo;
|
|
||||||
procedure InitMRUs;
|
procedure InitMRUs;
|
||||||
procedure InitWidgets;
|
procedure InitWidgets;
|
||||||
procedure InitDocking;
|
procedure InitDocking;
|
||||||
|
@ -802,8 +801,6 @@ begin
|
||||||
OnDragDrop:= @ddHandler.DragDrop;
|
OnDragDrop:= @ddHandler.DragDrop;
|
||||||
OnDragOver:= @ddHandler.DragOver;
|
OnDragOver:= @ddHandler.DragOver;
|
||||||
//
|
//
|
||||||
checkCompilo;
|
|
||||||
//
|
|
||||||
updateMainMenuProviders;
|
updateMainMenuProviders;
|
||||||
EntitiesConnector.forceUpdate;
|
EntitiesConnector.forceUpdate;
|
||||||
fSymStringExpander:= getSymStringExpander;
|
fSymStringExpander:= getSymStringExpander;
|
||||||
|
@ -815,17 +812,6 @@ begin
|
||||||
fInitialized := true;
|
fInitialized := true;
|
||||||
end;
|
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;
|
procedure TCEMainForm.getCMdParams;
|
||||||
var
|
var
|
||||||
value: string;
|
value: string;
|
||||||
|
|
Loading…
Reference in New Issue