mirror of
https://github.com/gnustep/libs-gdl2.git
synced 2025-02-22 19:01:04 +00:00
* EOAccess/EODatabase.m (-snapshots): Return an autoreleased copy.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@23656 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
0412fd6a40
commit
e181d5707e
2 changed files with 3 additions and 1 deletions
|
@ -9,6 +9,8 @@
|
||||||
* EOAdaptors/PostgreSQLAdaptor/PostgreSQLExpression.m
|
* EOAdaptors/PostgreSQLAdaptor/PostgreSQLExpression.m
|
||||||
(+dropTableStatementsForEntityGroup:): Ditto.
|
(+dropTableStatementsForEntityGroup:): Ditto.
|
||||||
|
|
||||||
|
* EOAccess/EODatabase.m (-snapshots): Return an autoreleased copy.
|
||||||
|
|
||||||
2006-09-27 Matt Rice <ratmice@yahoo.com>
|
2006-09-27 Matt Rice <ratmice@yahoo.com>
|
||||||
|
|
||||||
(-selectNext): Implement.
|
(-selectNext): Implement.
|
||||||
|
|
|
@ -643,7 +643,7 @@ static NSMutableArray *databaseInstances;
|
||||||
|
|
||||||
- (NSDictionary *)snapshots
|
- (NSDictionary *)snapshots
|
||||||
{
|
{
|
||||||
return _snapshots;
|
return AUTORELEASE([_snapshots copy]);
|
||||||
}
|
}
|
||||||
|
|
||||||
@end /* EODatabase (EOUniquing) */
|
@end /* EODatabase (EOUniquing) */
|
||||||
|
|
Loading…
Reference in a new issue