[JEDI.NET-commits] main/run Jedi.IO.FileOfRec.pas,1.4,1.5 Jedi.IO.IniFiles.pas,1.4,1.5 Jedi.IO.Paths
Status: Pre-Alpha
Brought to you by:
jedi_mbe
From: Marcel B. <jed...@us...> - 2005-03-29 18:31:24
|
Update of /cvsroot/jedidotnet/main/run In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18565/main/run Modified Files: Jedi.IO.FileOfRec.pas Jedi.IO.IniFiles.pas Jedi.IO.Paths.pas Jedi.Windows.Forms.Graphics.ShapeControl.pas Log Message: * Removed alias trick to mimic uses <namespace>.* only results in more problems * Minor clean ups (I was going through the files anyway) Index: Jedi.Windows.Forms.Graphics.ShapeControl.pas =================================================================== RCS file: /cvsroot/jedidotnet/main/run/Jedi.Windows.Forms.Graphics.ShapeControl.pas,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Jedi.Windows.Forms.Graphics.ShapeControl.pas 14 Mar 2005 17:07:30 -0000 1.2 --- Jedi.Windows.Forms.Graphics.ShapeControl.pas 29 Mar 2005 18:31:15 -0000 1.3 *************** *** 27,31 **** interface ! {$REGION 'interface uses'} uses Jedi.System.SourceVersioning, --- 27,31 ---- interface ! {$REGION 'uses'} uses Jedi.System.SourceVersioning, *************** *** 98,102 **** implementation ! {$REGION 'Shape control'} constructor Shape.Create; begin --- 98,102 ---- implementation ! {$REGION 'Shape'} constructor Shape.Create; begin Index: Jedi.IO.IniFiles.pas =================================================================== RCS file: /cvsroot/jedidotnet/main/run/Jedi.IO.IniFiles.pas,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Jedi.IO.IniFiles.pas 14 Mar 2005 12:53:07 -0000 1.4 --- Jedi.IO.IniFiles.pas 29 Mar 2005 18:31:15 -0000 1.5 *************** *** 26,37 **** interface ! {$REGION 'interface uses'} uses System.Collections, System.Collections.Specialized, System.IO, System.Resources, System.Threading, ! Jedi.System, Jedi.Timers.EventScheduler; {$ENDREGION} --- 26,40 ---- interface ! {$REGION 'uses'} uses System.Collections, System.Collections.Specialized, System.IO, + System.Globalization, System.Resources, System.Threading, ! Jedi.System.FrameworkResources, ! Jedi.System.SourceVersioning, ! Jedi.System.Strings, Jedi.Timers.EventScheduler; {$ENDREGION} *************** *** 549,557 **** {$AUTOBOX ON} - {$REGION 'implementation uses'} - uses - System.Globalization; - {$ENDREGION} - {$REGION 'protected classes'} type --- 552,555 ---- Index: Jedi.IO.FileOfRec.pas =================================================================== RCS file: /cvsroot/jedidotnet/main/run/Jedi.IO.FileOfRec.pas,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Jedi.IO.FileOfRec.pas 13 Mar 2005 11:52:20 -0000 1.4 --- Jedi.IO.FileOfRec.pas 29 Mar 2005 18:31:14 -0000 1.5 *************** *** 26,38 **** interface ! {$REGION 'Interface uses'} uses System.IO, System.Reflection, ! Jedi.System; {$ENDREGION} - type {$REGION 'StoredExtended record'} [JediSourceInfo('$Header$')] StoredExtended = record --- 26,38 ---- interface ! {$REGION 'uses'} uses System.IO, System.Reflection, ! Jedi.System.SourceVersioning; {$ENDREGION} {$REGION 'StoredExtended record'} + type [JediSourceInfo('$Header$')] StoredExtended = record *************** *** 79,82 **** --- 79,83 ---- {$REGION 'StreamOfValueType exception'} + type [JediSourceInfo('$Header$')] StreamOfValueTypeException = class(Exception); *************** *** 84,87 **** --- 85,89 ---- {$REGION 'StreamOfValueType base class'} + type [JediSourceInfo('$Header$')] StreamOfValueTypeBase = class(System.Object) Index: Jedi.IO.Paths.pas =================================================================== RCS file: /cvsroot/jedidotnet/main/run/Jedi.IO.Paths.pas,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Jedi.IO.Paths.pas 29 Mar 2005 10:49:56 -0000 1.5 --- Jedi.IO.Paths.pas 29 Mar 2005 18:31:15 -0000 1.6 *************** *** 26,29 **** --- 26,30 ---- interface + {$REGION 'uses'} uses Jedi.System.SourceVersioning, *************** *** 32,35 **** --- 33,37 ---- System.IO, System.Text; + {$ENDREGION} {$REGION 'Path manipulations'} |