Fixed: using IXMLNode.Text instead of NodeValue for the enumeration Text getter

This commit is contained in:
Mark van Renswoude 2008-04-22 14:49:32 +00:00
parent e4903fdb7b
commit 80acc3c04d
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ const
PropertyImplMethodGetText = 'function TXML%<Name>:s.Get%<PropertyName>:sText: WideString;' + CrLf +
'begin' + CrLf +
' Result := ChildNodes[''%<PropertySourceName>:s''].NodeValue;' + CrLf +
' Result := ChildNodes[''%<PropertySourceName>:s''].Text;' + CrLf +
'end;' + CrLf +
'' + CrLf;