diff --git a/src/ce_editor.pas b/src/ce_editor.pas index 622e728f..80289816 100644 --- a/src/ce_editor.pas +++ b/src/ce_editor.pas @@ -31,7 +31,6 @@ type fDoc: TCESynMemo; // http://bugs.freepascal.org/view.php?id=26329 // TODO-cbugfix: syncro-edit partially broken, undetermined condition - // TODO-cbugfix: syncro-edit should not be case-sensitive // TODO-cbugfix: syncro-edit icon hidden after deletion, if doc is saved (as temp file, by the static explorer) fSyncEdit: TSynPluginSyncroEdit; tokLst: TLexTokenList; @@ -85,6 +84,7 @@ begin // completion.OnPaintItem := @completionItemPaint; fSyncEdit := TSynPluginSyncroEdit.Create(self); + //TODO: activate this after enxt Laz release //fSyncEdit.CaseSensitive:=true; bmp := TBitmap.Create; try diff --git a/src/ce_tools.pas b/src/ce_tools.pas index afa7c9c3..bf5254db 100644 --- a/src/ce_tools.pas +++ b/src/ce_tools.pas @@ -251,7 +251,6 @@ begin if not exeInSysPath(aTool.executable) then if (aTool.chainAfter.Count = 0) and (aTool.chainBefore.Count = 0) then exit; - // TODO-cWiki: toolchain, process is async but poWaitOnExit can be set to force syncro. for nme in aTool.chainBefore do for chained in fTools do if TCEToolItem(chained).toolAlias = nme then