From: Nando D. <na...@us...> - 2005-07-24 16:38:48
|
Update of /cvsroot/instantobjects/Demos/PrimerCross In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25587/PrimerCross Modified Files: Main.pas Primer.dpr PrimerExternal.dpr Log Message: removal of package cfg, dof and res files from CVS (D6 and D7 only) Index: PrimerExternal.dpr =================================================================== RCS file: /cvsroot/instantobjects/Demos/PrimerCross/PrimerExternal.dpr,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** PrimerExternal.dpr 10 Feb 2005 23:06:19 -0000 1.3 --- PrimerExternal.dpr 24 Jul 2005 16:38:37 -0000 1.4 *************** *** 26,40 **** * * Contributor(s): ! * Carlo Barazzetta: ! * - cross-platform porting for Delphi 5,6,7 & Kilix ! * - PerformanceView form changed to make tests with UsePreparedQuery ! * - PerformanceView form changed to make tests with Statement Cache ! * - PerformanceView form changed to make tests of Queries ! * - Salary attribute of type Currency added to Person ! * - PersonEdit form and random data form changed to test Graphic support * ***** END LICENSE BLOCK ***** *) program PrimerExternal; uses Forms, --- 26,37 ---- * * Contributor(s): ! * Carlo Barazzetta, Nando Dessena ! * * ***** END LICENSE BLOCK ***** *) program PrimerExternal; + {$I '../../InstantDefines.inc'} + uses Forms, Index: Main.pas =================================================================== RCS file: /cvsroot/instantobjects/Demos/PrimerCross/Main.pas,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** Main.pas 21 Mar 2005 16:48:04 -0000 1.10 --- Main.pas 24 Jul 2005 16:38:36 -0000 1.11 *************** *** 20,24 **** {$ENDIF} InstantPersistence, BasicView, Stopwatch, ! InstantConnectionManagerForm, InstantConnectionManager; type --- 20,24 ---- {$ENDIF} InstantPersistence, BasicView, Stopwatch, ! InstantConnectionManagerFormUnit, InstantConnectionManager; type Index: Primer.dpr =================================================================== RCS file: /cvsroot/instantobjects/Demos/PrimerCross/Primer.dpr,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Primer.dpr 10 Feb 2005 23:06:19 -0000 1.6 --- Primer.dpr 24 Jul 2005 16:38:37 -0000 1.7 *************** *** 27,41 **** * * Contributor(s): ! * Carlo Barazzetta: ! * - cross-platform porting for Delphi 5,6,7 & Kilix ! * - PerformanceView form changed to make tests with UsePreparedQuery ! * - PerformanceView form changed to make tests with Statement Cache ! * - PerformanceView form changed to make tests of Queries ! * - Salary attribute of type Currency added to Person ! * - PersonEdit form and random data form changed to test Graphic support * ***** END LICENSE BLOCK ***** *) program Primer; uses Forms, --- 27,38 ---- * * Contributor(s): ! * Carlo Barazzetta, Nando Dessena ! * * ***** END LICENSE BLOCK ***** *) program Primer; + {$I '../../InstantDefines.inc'} + uses Forms, |