[JEDI.NET-commits] main/run Jedi.System.pas,1.4,1.5
Status: Pre-Alpha
Brought to you by:
jedi_mbe
From: Marcel B. <jed...@us...> - 2004-11-24 12:08:24
|
Update of /cvsroot/jedidotnet/main/run In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22368/main/run Modified Files: Jedi.System.pas Log Message: * Renamed Jedi.Drawing assembly to Jedi.Graphics (to avoid name clash with the Jedi.Drawing namespace). * Jedi.System, moved the hidden constructor to strict protected (avoiding the use of HINT OFF/HINT ON directives) Index: Jedi.System.pas =================================================================== RCS file: /cvsroot/jedidotnet/main/run/Jedi.System.pas,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Jedi.System.pas 26 Aug 2004 09:44:10 -0000 1.4 --- Jedi.System.pas 24 Nov 2004 12:08:13 -0000 1.5 *************** *** 39,49 **** type AttributeUtils = class (System.Object) - strict private - { Avoids a hint about private symbol declared but not used. We need to declare it to prevent the compiler from - automatically generating a public constructor (due to a .NET rule) } - {$HINTS OFF} - constructor Create; - {$HINTS ON} strict protected class function CombineAttributes(attributes1, attributes2: ArrayList; operation: AttributeCombineOperation): ArrayList; overload; static; --- 39,44 ---- type AttributeUtils = class (System.Object) strict protected + constructor Create; class function CombineAttributes(attributes1, attributes2: ArrayList; operation: AttributeCombineOperation): ArrayList; overload; static; |