From 7eac3f03051eeeda2f07cdf91a9f0ffede2aed4a Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Fri, 1 Jul 2016 05:14:39 +0200 Subject: [PATCH] fix typo in an application option --- src/ce_main.pas | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/ce_main.pas b/src/ce_main.pas index ef505c61..b4d64d68 100644 --- a/src/ce_main.pas +++ b/src/ce_main.pas @@ -485,7 +485,7 @@ type property maxRecentProjects: integer read fMaxRecentProjs write fMaxRecentProjs; property maxRecentDocuments: integer read fMaxRecentDocs write fMaxRecentDocs; property dubCompiler: TCECompiler read getDubCompiler write setDubCompiler; - property nativeProjecCompiler: TCECompiler read getNativeProjecCompiler write setNativeProjecCompiler; + property nativeProjectCompiler: TCECompiler read getNativeProjecCompiler write setNativeProjecCompiler; property runnableCompiler: TCECompiler read getRunnableCompiler write setRunnableCompiler; property runnableDestination: TCEPathname read fRunnableDest write setRunnableDestination; property runnableDestinationAlways: boolean read fAlwaysUseDest write fAlwaysUseDest; @@ -497,6 +497,9 @@ type // published for ICEEditableOptions but stored by DCD wrapper since it reloads before CEMainForm property dcdPort: word read fDcdPort write fDcdPort stored false; + + // TODO-cmaintenance: remove this property from version 3 update 1 + property nativeProjecCompiler: TCECompiler read getNativeProjecCompiler write setNativeProjecCompiler stored false; end; TCEApplicationOptions = class(TCEApplicationOptionsBase, ICEEditableOptions)