From 55e26edce88821f6aa0a8445a2b4b25efb151bb8 Mon Sep 17 00:00:00 2001 From: xavier Date: Mon, 8 Mar 2010 18:07:28 +0000 Subject: [PATCH] Correction dans la classe FileElementDefinition : la methode isWritable pouvait retourner false alors que l'element avait recu une description XML. git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@887 bfdf4180-ca20-0410-9c96-a3a8aa849046 --- sources/fileelementdefinition.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/sources/fileelementdefinition.cpp b/sources/fileelementdefinition.cpp index cf98a9afb..5362807c6 100644 --- a/sources/fileelementdefinition.cpp +++ b/sources/fileelementdefinition.cpp @@ -54,6 +54,7 @@ QDomElement FileElementDefinition::xml() { bool FileElementDefinition::setXml(const QDomElement &xml_element) { xml_element_.clear(); xml_element_.appendChild(xml_element_.importNode(xml_element, true)); + is_null = false; return(true); }