From a3624bf2dc90fe0d962a34c18402c4918bde3d54 Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Fri, 11 Nov 2016 20:53:27 +0100 Subject: [PATCH] #99, hide two props not intended to be published --- src/ce_compilers.pas | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ce_compilers.pas b/src/ce_compilers.pas index 4eda9dcc..677b97a9 100644 --- a/src/ce_compilers.pas +++ b/src/ce_compilers.pas @@ -51,8 +51,6 @@ type protected procedure afterLoad; override; published - property wouldNeedRestart: boolean read fWouldNeedRestart write fWouldNeedRestart; - property modified: boolean read fModified write fModified; property defaultCompiler: DCompiler read fDefaultCompiler write setDefaultCompiler; property DmdExeName: string read fDmdExeName write setDmdExeName; property DmdRuntimePath: string read fDmdRuntimePath write setDmdRuntimePath; @@ -71,6 +69,8 @@ type property User2PhobosPath: string read fUser2PhobosPath write setUser2PhobosPath; public procedure assign(source: TPersistent); override; + property wouldNeedRestart: boolean read fWouldNeedRestart write fWouldNeedRestart; + property modified: boolean read fModified write fModified; end; TCompilersPathsEditor = class(TForm, ICEEditableOptions, ICECompilerSelector, ICEProjectObserver)