From 80acc3c04d33544855eab43b02e91df4f1c21bfa Mon Sep 17 00:00:00 2001 From: Mark van Renswoude Date: Tue, 22 Apr 2008 14:49:32 +0000 Subject: [PATCH] Fixed: using IXMLNode.Text instead of NodeValue for the enumeration Text getter --- Units/DelphiXMLDataBindingResources.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Units/DelphiXMLDataBindingResources.pas b/Units/DelphiXMLDataBindingResources.pas index 44a8448..d297e15 100644 --- a/Units/DelphiXMLDataBindingResources.pas +++ b/Units/DelphiXMLDataBindingResources.pas @@ -109,7 +109,7 @@ const PropertyImplMethodGetText = 'function TXML%:s.Get%:sText: WideString;' + CrLf + 'begin' + CrLf + - ' Result := ChildNodes[''%:s''].NodeValue;' + CrLf + + ' Result := ChildNodes[''%:s''].Text;' + CrLf + 'end;' + CrLf + '' + CrLf;