mirror of
https://github.com/gnustep/libs-gdl2.git
synced 2025-04-22 12:55:44 +00:00
* EOControl/EOClassDescription.m
(+[EOClassDescription initialize]): Initialize model group after callback tables are initilized. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@17746 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
3bf11844dc
commit
45b740ce02
2 changed files with 9 additions and 3 deletions
|
@ -1,3 +1,9 @@
|
|||
2003-09-29 Philip Moetteli <Philip.Moetteli@tele2.ch>
|
||||
|
||||
* EOControl/EOClassDescription.m
|
||||
(+[EOClassDescription initialize]): Initialize model group
|
||||
after callback tables are initilized.
|
||||
|
||||
2003-09-10 David Ayers <d.ayers@inode.at>
|
||||
|
||||
* EOControl/EOFault.m
|
||||
|
|
|
@ -109,9 +109,6 @@ static id classDelegate = nil;
|
|||
{
|
||||
Class cls = NSClassFromString(@"EOModelGroup");
|
||||
|
||||
if (cls != Nil)
|
||||
[cls defaultGroup]; // Insure correct initialization.
|
||||
|
||||
classDescriptionForClass = NSCreateMapTable(NSObjectMapKeyCallBacks,
|
||||
NSObjectMapValueCallBacks,
|
||||
32);
|
||||
|
@ -119,6 +116,9 @@ static id classDelegate = nil;
|
|||
classDescriptionForEntity = NSCreateMapTable(NSObjectMapKeyCallBacks,
|
||||
NSObjectMapValueCallBacks,
|
||||
32);
|
||||
if (cls != Nil)
|
||||
[cls defaultGroup]; // Insure correct initialization.
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue