[JEDI.NET-commits] main/run Jedi.System.CommandLine.pas,1.5,1.6
Status: Pre-Alpha
Brought to you by:
jedi_mbe
From: Marcel B. <jed...@us...> - 2005-06-16 13:40:26
|
Update of /cvsroot/jedidotnet/main/run In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15087/main/run Modified Files: Jedi.System.CommandLine.pas Log Message: For some reason, the CommandLineArgument attribute was marked to be usable only once on a target. Bad! Index: Jedi.System.CommandLine.pas =================================================================== RCS file: /cvsroot/jedidotnet/main/run/Jedi.System.CommandLine.pas,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Jedi.System.CommandLine.pas 16 Jun 2005 13:18:02 -0000 1.5 --- Jedi.System.CommandLine.pas 16 Jun 2005 13:40:17 -0000 1.6 *************** *** 240,244 **** '$Revision$', '$Date$'), ! AttributeUsage(AttributeTargets.Property or AttributeTargets.Method, AllowMultiple = False, &Inherited = False)] CommandLineArgumentAttribute = class (Attribute) {$REGION 'Data'} --- 240,244 ---- '$Revision$', '$Date$'), ! AttributeUsage(AttributeTargets.Property or AttributeTargets.Method, AllowMultiple = True, &Inherited = False)] CommandLineArgumentAttribute = class (Attribute) {$REGION 'Data'} *************** *** 294,298 **** '$Revision$', '$Date$'), ! AttributeUsage(AttributeTargets.Property or AttributeTargets.Method, AllowMultiple = False, &Inherited = False)] BooleanCommandLineArgumentAttribute = class (CommandLineArgumentAttribute) {$REGION 'Constructor'} --- 294,298 ---- '$Revision$', '$Date$'), ! AttributeUsage(AttributeTargets.Property or AttributeTargets.Method, AllowMultiple = True, &Inherited = False)] BooleanCommandLineArgumentAttribute = class (CommandLineArgumentAttribute) {$REGION 'Constructor'} |