[JEDI.NET-commits] main/run Jedi.IO.IniFiles.pas,1.3,1.4
Status: Pre-Alpha
Brought to you by:
jedi_mbe
From: Marcel B. <jed...@us...> - 2005-03-14 12:53:17
|
Update of /cvsroot/jedidotnet/main/run In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5362/main/run Modified Files: Jedi.IO.IniFiles.pas Log Message: Changed occurances of '<param>: array of <type>' to '<param>: <type>Array' (and declared that array type) for each method where such a construct is the last parameter of the declaration; this avoids the compiler adding a ParamArray attribute, which implies slightly differing semantics. Index: Jedi.IO.IniFiles.pas =================================================================== RCS file: /cvsroot/jedidotnet/main/run/Jedi.IO.IniFiles.pas,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Jedi.IO.IniFiles.pas 25 Jan 2005 10:27:35 -0000 1.3 --- Jedi.IO.IniFiles.pas 14 Mar 2005 12:53:07 -0000 1.4 *************** *** 439,442 **** --- 439,443 ---- {$REGION 'Memory-based config file'} type + CharArray = array of Char; [JediSourceInfo('$Header$')] MemoryIniFile = class (MemoryIniFileBase) *************** *** 444,451 **** constructor Create; procedure Load(path: string); overload; ! procedure Load(path: string; commentChars: array of Char); overload; procedure Load(path: string; commentChars: array of Char; allowCommentAfterValues: Boolean); overload; procedure Load(reader: TextReader); overload; ! procedure Load(reader: TextReader; commentChars: array of Char); overload; procedure Load(reader: TextReader; commentChars: array of Char; allowCommentAfterValues: Boolean); overload; procedure Save(path: string); overload; --- 445,452 ---- constructor Create; procedure Load(path: string); overload; ! procedure Load(path: string; commentChars: CharArray); overload; procedure Load(path: string; commentChars: array of Char; allowCommentAfterValues: Boolean); overload; procedure Load(reader: TextReader); overload; ! procedure Load(reader: TextReader; commentChars: CharArray); overload; procedure Load(reader: TextReader; commentChars: array of Char; allowCommentAfterValues: Boolean); overload; procedure Save(path: string); overload; |