[JEDI.NET-commits] tools/docs/common Jedi.Docs.System.pas,1.5,1.6
Status: Pre-Alpha
Brought to you by:
jedi_mbe
From: Marcel B. <jed...@us...> - 2004-11-26 17:30:56
|
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) + '@'; |