Update of /cvsroot/jedidotnet/tools/docs/common
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1813/tools/docs/common
Modified Files:
Jedi.Docs.System.pas
Log Message:
Parameters of a nested type were exported with the plus character instead of the dot.
Index: Jedi.Docs.System.pas
===================================================================
RCS file: /cvsroot/jedidotnet/tools/docs/common/Jedi.Docs.System.pas,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** Jedi.Docs.System.pas 26 Nov 2004 15:34:55 -0000 1.5
--- Jedi.Docs.System.pas 26 Nov 2004 17:30:46 -0000 1.6
***************
*** 252,256 ****
else
isFirst := False;
! s := params[i].ParameterType.FullName;
if s.EndsWith('&') then
s := s.Substring(0, s.Length - 1) + '@';
--- 252,256 ----
else
isFirst := False;
! s := TypeToXMLName(params[i].ParameterType);
if s.EndsWith('&') then
s := s.Substring(0, s.Length - 1) + '@';
|