From 9ccfb913a3b6eef8d91718369bdc6a1905cd8ae5 Mon Sep 17 00:00:00 2001 From: mattias Date: Mon, 4 Feb 2013 22:43:32 +0000 Subject: [PATCH] codetools: added debugging to UpdateProcBodySignatures git-svn-id: trunk@40185 - --- components/codetools/codecompletiontool.pas | 1 + 1 file changed, 1 insertion(+) diff --git a/components/codetools/codecompletiontool.pas b/components/codetools/codecompletiontool.pas index 89be6b6b27..5e31c1cda3 100644 --- a/components/codetools/codecompletiontool.pas +++ b/components/codetools/codecompletiontool.pas @@ -7642,6 +7642,7 @@ begin OldProcCode:=ExtractProcHead(BodyNodeExt.Node,ProcAttrCopyDefToBody); if CompareTextIgnoringSpace(NewProcCode,OldProcCode,true)<>0 then begin // update body + debugln(['TCodeCompletionCodeTool.UpdateProcBodySignatures Old="',dbgstr(OldProcCode),'" New="',dbgstr(NewProcCode),'"']); BodyProcHeadNode:=BodyNodeExt.Node.FirstChild; InsertPos:=BodyNodeExt.Node.StartPos; InsertEndPos:=BodyProcHeadNode.EndPos;