* EOAccess/EODatabaseDataSource.m (-insertObject): Do not

insert object into the editing context.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@20654 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
ayers 2005-02-03 17:18:34 +00:00
parent a65a8adcb9
commit 1e6c4e69e5

View file

@ -301,12 +301,17 @@ RCS_ID("$Id$")
detailKey: detailKey];
}
- (void)insertObject: object
/**
* Overrides superclasses implementation but doesn't do anything
* useful. You must insert the object into the editing context
* manually.
*/
- (void)insertObject: (id)object
{
[_editingContext insertObject: object];
}
- (void)deleteObject: object
- (void)deleteObject: (id)object
{
[_editingContext deleteObject: object];
}