From 9e5ed20aa2cbe0a7ae30dc516840760e78aefdcd Mon Sep 17 00:00:00 2001 From: Kathy Date: Tue, 12 Feb 2019 14:04:02 +0000 Subject: [PATCH] B2019-022: UCF replace word dialog, remove unsupported flags for case sensitivity (all & first) --- PROMS/VEPROMS.CSLA.Library/Config/FormatConfig.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/PROMS/VEPROMS.CSLA.Library/Config/FormatConfig.cs b/PROMS/VEPROMS.CSLA.Library/Config/FormatConfig.cs index c17b1f9e..01552730 100644 --- a/PROMS/VEPROMS.CSLA.Library/Config/FormatConfig.cs +++ b/PROMS/VEPROMS.CSLA.Library/Config/FormatConfig.cs @@ -293,9 +293,10 @@ namespace VEPROMS.CSLA.Library // Case Sensitivity Flags - default is off (Case Sensitive Replace) CaseInsens = 0x0000C000, // Do ReplaceWords for all words thatmatch, regardless of case, // and replace with the ReplaceWith string as is - CaseInsensFirst = 0x4000, // Do ReplaceWords for all words thatexactly match the ReplaceWord, + // B2019-022: do not support CaseInsensFirst & CaseInsensAll - there is no supporting replace word code: + //CaseInsensFirst = 0x4000, // Do ReplaceWords for all words thatexactly match the ReplaceWord, // except the case of the first character may be different - CaseInsensAll = 0x8000, // Do ReplaceWords for all words that match the ReplaceWord, regardless of case + //CaseInsensAll = 0x8000, // Do ReplaceWords for all words that match the ReplaceWord, regardless of case Partials = 0x10000, // Do replace even on partial matches Plackeep = 0x20000, // Do replace in PlaceKeepers