remove a dependency to PropEdit and IdeIntf in dmd wrapper

related to #30
This commit is contained in:
Basile Burg 2015-09-05 17:10:33 +02:00
parent d2578128bd
commit 3fbb09be4f
3 changed files with 6 additions and 5 deletions

View File

@ -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.

View File

@ -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;
(* (*

View File

@ -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