mirror of
https://github.com/gnustep/libs-gdl2.git
synced 2025-04-22 12:55:44 +00:00
* EOControl/EOEditingContext.m
(-[EOEditingContext validateChangesForSave]): Use processed changes instead of unprocessed changes. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@19306 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
c7f9106884
commit
426de95b13
2 changed files with 9 additions and 3 deletions
|
@ -1,3 +1,9 @@
|
|||
2004-05-14 David Ayers <d.ayers@inode.at>
|
||||
|
||||
* EOControl/EOEditingContext.m
|
||||
(-[EOEditingContext validateChangesForSave]): Use processed
|
||||
changes instead of unprocessed changes.
|
||||
|
||||
2004-05-12 Matt Rice <ratmice@yahoo.com>
|
||||
|
||||
* EOControl/EOQualifier.h: Add NSMutableSet class declaration.
|
||||
|
|
|
@ -1346,7 +1346,7 @@ validateTable:(NSHashTable*)table
|
|||
EOFLOGObjectLevelArgs(@"EOEditingContext", @"unprocessed: %@",
|
||||
[self unprocessedDescription]);
|
||||
|
||||
validateForDelete = [self validateTable: _unprocessedDeletes
|
||||
validateForDelete = [self validateTable: _deletedObjects
|
||||
withSelector: @selector(validateForDelete)
|
||||
exceptionArray: &exceptions
|
||||
continueAfterFailure: NO];
|
||||
|
@ -1370,7 +1370,7 @@ validateTable:(NSHashTable*)table
|
|||
}
|
||||
else
|
||||
{
|
||||
BOOL validateForInsert = [self validateTable: _unprocessedInserts
|
||||
BOOL validateForInsert = [self validateTable: _insertedObjects
|
||||
withSelector: @selector(validateForInsert)
|
||||
exceptionArray: &exceptions
|
||||
continueAfterFailure: NO];
|
||||
|
@ -1395,7 +1395,7 @@ validateTable:(NSHashTable*)table
|
|||
else
|
||||
{
|
||||
BOOL validateForUpdate
|
||||
= [self validateTable: _unprocessedInserts
|
||||
= [self validateTable: _changedObjects
|
||||
withSelector: @selector(validateForUpdate)
|
||||
exceptionArray: &exceptions
|
||||
continueAfterFailure: NO];
|
||||
|
|
Loading…
Reference in a new issue