mirror of https://gitlab.com/basile.b/dexed.git
#99, hide two props not intended to be published
This commit is contained in:
parent
4efb833b72
commit
a3624bf2dc
|
@ -51,8 +51,6 @@ type
|
||||||
protected
|
protected
|
||||||
procedure afterLoad; override;
|
procedure afterLoad; override;
|
||||||
published
|
published
|
||||||
property wouldNeedRestart: boolean read fWouldNeedRestart write fWouldNeedRestart;
|
|
||||||
property modified: boolean read fModified write fModified;
|
|
||||||
property defaultCompiler: DCompiler read fDefaultCompiler write setDefaultCompiler;
|
property defaultCompiler: DCompiler read fDefaultCompiler write setDefaultCompiler;
|
||||||
property DmdExeName: string read fDmdExeName write setDmdExeName;
|
property DmdExeName: string read fDmdExeName write setDmdExeName;
|
||||||
property DmdRuntimePath: string read fDmdRuntimePath write setDmdRuntimePath;
|
property DmdRuntimePath: string read fDmdRuntimePath write setDmdRuntimePath;
|
||||||
|
@ -71,6 +69,8 @@ type
|
||||||
property User2PhobosPath: string read fUser2PhobosPath write setUser2PhobosPath;
|
property User2PhobosPath: string read fUser2PhobosPath write setUser2PhobosPath;
|
||||||
public
|
public
|
||||||
procedure assign(source: TPersistent); override;
|
procedure assign(source: TPersistent); override;
|
||||||
|
property wouldNeedRestart: boolean read fWouldNeedRestart write fWouldNeedRestart;
|
||||||
|
property modified: boolean read fModified write fModified;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
TCompilersPathsEditor = class(TForm, ICEEditableOptions, ICECompilerSelector, ICEProjectObserver)
|
TCompilersPathsEditor = class(TForm, ICEEditableOptions, ICECompilerSelector, ICEProjectObserver)
|
||||||
|
|
Loading…
Reference in New Issue