* EOAccess/EORelationship.m,

* EOAccess/EOAttribute.h,
	* Tools/EOEntity+GSDoc.m,
	* Tools/EOAttribute+GSDoc.m: Remove references to GC-classes
	in comments.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@25102 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
David Ayers 2007-05-01 12:01:43 +00:00
parent 31f0adba83
commit d0f30340f9
5 changed files with 19 additions and 13 deletions

View file

@ -1,3 +1,11 @@
2007-05-01 David Ayers <ayers@fsfe.org>
* EOAccess/EORelationship.m,
* EOAccess/EOAttribute.h,
* Tools/EOEntity+GSDoc.m,
* Tools/EOAttribute+GSDoc.m: Remove references to GC-classes
in comments.
2007-04-16 David Ayers <ayers@fsfe.org>
* EOAdaptors/PostgreSQLAdaptor/PostgreSQLChannel.m
@ -465,6 +473,7 @@
2006-09-27 Matt Rice <ratmice@yahoo.com>
* EOInterface/EODisplayGroup.m
(-selectNext): Implement.
(-selectPrevious): Ditto.
(-enabledToSetSelectedObjectValueForKey:): Handle query mode.
@ -620,7 +629,7 @@
* EOAdaptors/Postgres95/GNUmakefile.in:
Install into GNUSTEP_SYSTEM_ROOT by default.
* * Update email addresses for Mirko Viviani and David Ayers.
* Update email addresses for Mirko Viviani and David Ayers.
2006-09-14 David Ayers <ayers@fsfe.org>

View file

@ -106,9 +106,6 @@ typedef enum {
NSDictionary *_internalInfo;
NSString *_docComment;
/* Garbage collectable objects */
// EOEntity *_entity;
// GCMutableArray *_definitionArray; // These variables are meaningful only
id _parent; /* unretained */
EOAttribute *_prototype;
EOExpressionArray *_definitionArray;

View file

@ -100,7 +100,7 @@ RCS_ID("$Id$")
_destinationNames = [NSMutableDictionary new];
_userInfo = [NSDictionary new];
_sourceToDestinationKeyMap = [NSDictionary new];
_joins = [GCMutableArray new];
_joins = [NSMutableArray new];
*/
}
@ -1550,9 +1550,9 @@ relationships. Nil if none" **/
{
[(NSMutableArray *)_joins removeObject: join];
/*NO: will be recomputed [(GCMutableArray *)_sourceAttributes
/*NO: will be recomputed [(NSMutableArray *)_sourceAttributes
removeObject:[join sourceAttribute]];
[(GCMutableArray *)_destinationAttributes
[(NSMutableArray *)_destinationAttributes
removeObject:[join destinationAttribute]];
*/
@ -1573,13 +1573,13 @@ relationships. Nil if none" **/
/*NO: will be recomputed
_sourceAttributes = [[_sourceAttributes autorelease] mutableCopy];
[(GCMutableArray *)_sourceAttributes
[(NSMutableArray *)_sourceAttributes
removeObject:[join sourceAttribute]];
_sourceAttributes = [[_sourceAttributes autorelease] copy];
_destinationAttributes = [[_destinationAttributes autorelease]
mutableCopy];
[(GCMutableArray *)_destinationAttributes
[(NSMutableArray *)_destinationAttributes
removeObject:[join destinationAttribute]];
_destinationAttributes = [[_destinationAttributes autorelease] copy];
*/

View file

@ -60,7 +60,7 @@ RCS_ID("$Id$")
NSString* insertFormat;
NSString* selectFormat;
NSString* updateFormat;
GCMutableArray* definitionArray; // These variables are meaningful only
NSMutableArray* definitionArray; // These variables are meaningful only
EOAttribute* realAttribute; // if the attribute is flattened
*/

View file

@ -57,9 +57,9 @@ RCS_ID("$Id$")
NSString* externalQuery;
NSArray* attributesNamesUsedForInsert;
EOQualifier* qualifier;
GCArray* attributesUsedForInsert; // cache from classProperties
GCArray* attributesUsedForFetch; // cache from classProperties
GCArray* relationsUsedForFetch; // cache from classProperties
NSArray* attributesUsedForInsert; // cache from classProperties
NSArray* attributesUsedForFetch; // cache from classProperties
NSArray* relationsUsedForFetch; // cache from classProperties
*/
@implementation EOEntity (GSDoc)