From 918efdedca10ff7dad5e702151a234846fa12ed9 Mon Sep 17 00:00:00 2001 From: mattias Date: Fri, 17 Dec 2010 19:12:20 +0000 Subject: [PATCH] laz_xmlcfg: fixed DeletePath setting Modified, bug #17970 git-svn-id: trunk@28744 - --- components/codetools/laz_xmlcfg.pas | 1 + 1 file changed, 1 insertion(+) diff --git a/components/codetools/laz_xmlcfg.pas b/components/codetools/laz_xmlcfg.pas index 762cc83219..aedba882fd 100644 --- a/components/codetools/laz_xmlcfg.pas +++ b/components/codetools/laz_xmlcfg.pas @@ -343,6 +343,7 @@ begin if (Node=nil) or (Node.ParentNode=nil) then exit; ParentNode:=Node.ParentNode; ParentNode.RemoveChild(Node); + FModified:=true; InvalidatePathCache; InternalCleanNode(ParentNode); end;