mirror of
https://github.com/gnustep/libs-gdl2.git
synced 2025-04-22 12:55:44 +00:00
* EOAdaptors/Postgres95/Postgres95Channel.m: Added missing
include. ([Postgres95Channel _describeForeignKeysForEntity:forModel:]): Fix typo to unsure using correct entity. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@18673 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
0461c0d036
commit
82c16e40a0
2 changed files with 9 additions and 1 deletions
|
@ -1,3 +1,10 @@
|
|||
2003-02-26 Matt Rice <ratmice@yahoo.com>
|
||||
|
||||
* EOAdaptors/Postgres95/Postgres95Channel.m: Added missing
|
||||
include.
|
||||
([Postgres95Channel _describeForeignKeysForEntity:forModel:]):
|
||||
Fix typo to unsure using correct entity.
|
||||
|
||||
2003-02-25 David Ayers <d.ayers@inode.at>
|
||||
|
||||
* EOControl/EOCheapArray.m ([EOCheapArray dealloc]): Replace
|
||||
|
|
|
@ -50,6 +50,7 @@ RCS_ID("$Id$")
|
|||
#include <Foundation/NSObjCRuntime.h>
|
||||
#include <Foundation/NSUtilities.h>
|
||||
#include <Foundation/NSException.h>
|
||||
#include <Foundation/NSAutoreleasePool.h>
|
||||
#include <Foundation/NSDebug.h>
|
||||
#else
|
||||
#include <Foundation/Foundation.h>
|
||||
|
@ -1705,7 +1706,7 @@ each key
|
|||
[dstAttribNames addObject: dstAttribName];
|
||||
|
||||
srcAttrib = [srcEntity attributeNamed: srcAttribName];
|
||||
dstAttrib = [srcEntity attributeNamed: dstAttribName];
|
||||
dstAttrib = [dstEntity attributeNamed: dstAttribName];
|
||||
|
||||
join
|
||||
= AUTORELEASE([[EOJoin alloc] initWithSourceAttribute: srcAttrib
|
||||
|
|
Loading…
Reference in a new issue