From 9f3725310506d0447c35d378bb95f980ae71a450 Mon Sep 17 00:00:00 2001 From: juha Date: Tue, 8 Jun 2010 21:46:21 +0000 Subject: [PATCH] CheckLFMDialog: remove commented debug lines. git-svn-id: trunk@25995 - --- ide/checklfmdlg.pas | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ide/checklfmdlg.pas b/ide/checklfmdlg.pas index 457232a553..c18bab7717 100644 --- a/ide/checklfmdlg.pas +++ b/ide/checklfmdlg.pas @@ -709,12 +709,8 @@ begin Result:=false; for i:=LfmChangeList.Count-1 downto 0 do begin Entry:=TLFMChangeEntry(LfmChangeList[i]); -// DebugLn('TCheckLFMDialog.ApplyReplacements A ',IntToStr(i),' ', -// IntToStr(Entry.StartPos),',',IntToStr(Entry.EndPos), -// ' "',copy(fLFMBuffer.Source,Entry.StartPos,Entry.EndPos-Entry.StartPos),'" -> "',Entry.NewText,'"'); fLFMBuffer.Replace(Entry.StartPos,Entry.EndPos-Entry.StartPos,Entry.NewText); end; - //writeln(fLFMBuffer.Source); Result:=true; end;