mirror of
https://github.com/gnustep/libs-gdl2.git
synced 2025-04-22 12:55:44 +00:00
* EOAccess/EORelationship.m (-[isToManyToOne]): Correct index
used to retrieved second relationship. Bug #29369 git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@30080 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
4f0b98da9c
commit
906e052fe9
2 changed files with 9 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
2010-03-30 Sergey Golovin <golovin.sv@gmail.com>
|
||||
|
||||
* EOAccess/EORelationship.m (-[isToManyToOne]): Correct index
|
||||
used to retrieved second relationship.
|
||||
Bug #29369
|
||||
|
||||
2010-03-30 David Ayers <ayers@fsfe.org>
|
||||
|
||||
* Tools/EOModel+GSDoc.m (-[gsdocContentSplittedByEntities:idPtr:]):
|
||||
|
@ -5,12 +11,14 @@
|
|||
match parameters.
|
||||
Reported by: Federico Gimenez Nieto, Sergey Golovin.
|
||||
Fix reported by: Richard Frith-Macdonald.
|
||||
Bug #29191
|
||||
|
||||
* EOControl/EONSAddOns.m (GSUseStrictWO451Compatibility): Avoid usage
|
||||
of GS_INITIALIZED_LOCK.
|
||||
* EOControl/EOPrivate.h/m (GDL2_AssignAtomicallyIfNil): New convenience
|
||||
function for initializing variables in multithreaded environments.
|
||||
Reported by: Tim Kack
|
||||
Bug #28900
|
||||
|
||||
2010-03-15 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
|
|
|
@ -1919,7 +1919,7 @@ becomes "name", and "FIRST_NAME" becomes "firstName".*/
|
|||
if (isToMany)
|
||||
{
|
||||
EORelationship *secondRelationship = [_definitionArray
|
||||
objectAtIndex: 0];
|
||||
objectAtIndex: 1];
|
||||
|
||||
if (![secondRelationship isToMany])
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue