From 17b1ed48c9ad995ce8ba1d34c40ee060845c11f2 Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Sun, 11 Jan 2015 03:13:55 +0100 Subject: [PATCH] deprecated option noBoundsCheck is now totally hidden --- src/ce_projconf.pas | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/ce_projconf.pas b/src/ce_projconf.pas index 965f6b93..8926450c 100644 --- a/src/ce_projconf.pas +++ b/src/ce_projconf.pas @@ -201,6 +201,9 @@ begin if getGridTarget = fProj.currentConfiguration.pathsOptions then if aEditor.GetName = 'Sources' then aShow := false; + if getGridTarget = fProj.currentConfiguration.outputOptions then + if aEditor.GetName = 'noBoundsCheck' then + aShow := false; end; function TCEProjectConfigurationWidget.getGridTarget: TPersistent; @@ -219,8 +222,8 @@ begin 7: exit( fProj.currentConfiguration.pathsOptions ); 8: exit( fProj.currentConfiguration.preBuildProcess ); 9: exit( fProj.currentConfiguration.postBuildProcess ); - 10: exit( fProj.currentConfiguration.runOptions ); - 11: exit( fProj.currentConfiguration ); + 10:exit( fProj.currentConfiguration.runOptions ); + 11:exit( fProj.currentConfiguration ); else result := nil; end; end;