mirror of https://gitlab.com/basile.b/dexed.git
remove a dependency to PropEdit and IdeIntf in dmd wrapper
related to #30
This commit is contained in:
parent
d2578128bd
commit
3fbb09be4f
|
@ -29,6 +29,10 @@ var
|
||||||
|
|
||||||
type
|
type
|
||||||
|
|
||||||
|
// aliased to get a custom prop inspector
|
||||||
|
TCEPathname = type string;
|
||||||
|
TCEFilename = type string;
|
||||||
|
|
||||||
(**
|
(**
|
||||||
* Workaround for a TAsyncProcess Linux issue: OnTerminate event not called.
|
* Workaround for a TAsyncProcess Linux issue: OnTerminate event not called.
|
||||||
* An idle timer is started when executing and trigs the event if necessary.
|
* An idle timer is started when executing and trigs the event if necessary.
|
||||||
|
|
|
@ -5,7 +5,7 @@ unit ce_dmdwrap;
|
||||||
interface
|
interface
|
||||||
|
|
||||||
uses
|
uses
|
||||||
classes, sysutils, process, asyncprocess, ce_common, ce_inspectors,
|
classes, sysutils, process, asyncprocess, ce_common,
|
||||||
ce_processes, ce_interfaces;
|
ce_processes, ce_interfaces;
|
||||||
|
|
||||||
(*
|
(*
|
||||||
|
|
|
@ -5,13 +5,10 @@ unit ce_inspectors;
|
||||||
interface
|
interface
|
||||||
|
|
||||||
uses
|
uses
|
||||||
Classes, SysUtils, Dialogs, PropEdits;
|
Classes, SysUtils, Dialogs, PropEdits, ce_common;
|
||||||
|
|
||||||
type
|
type
|
||||||
|
|
||||||
TCEPathname = type string;
|
|
||||||
TCEFilename = type string;
|
|
||||||
|
|
||||||
TCustomPathType = (ptFile, ptFolder);
|
TCustomPathType = (ptFile, ptFolder);
|
||||||
|
|
||||||
// base class for a property representing a path
|
// base class for a property representing a path
|
||||||
|
|
Loading…
Reference in New Issue