* EOInterface/EOColumnAssociation.m

* EOInterface/EOPopUpAssociation.m
        * EOInterface/EORadioMatrixAssociation.m
          NSArray doesn't know about initWithObject:


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@36326 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Sebastian Reitenbach 2013-03-10 12:43:34 +00:00
parent 05f5dbcb4c
commit ac39e74888
4 changed files with 7 additions and 3 deletions

View file

@ -3,6 +3,10 @@
add warning about method not implemented
* EOAdaptors/SQLiteAdaptor/LoginPanel/SQLite3LoginPanel.m
use NSOpenPanel when opening a file
* EOInterface/EOColumnAssociation.m
* EOInterface/EOPopUpAssociation.m
* EOInterface/EORadioMatrixAssociation.m
NSArray doesn't know about initWithObject:
2013-03-08: Sebastian Reitenbach <sebastia@l00-bugdead-prods.de>
* Apps/EOModelEditor/EOMEDocument.h

View file

@ -73,7 +73,7 @@
static NSArray *_keys = nil;
if (_keys == nil)
{
_keys = [[NSArray alloc] initWithObject: @"identifier"];
_keys = [[NSArray alloc] initWithObjects: @"identifier", nil];
}
return _keys;
}

View file

@ -73,7 +73,7 @@
static NSArray *_keys = nil;
if (_keys == nil)
{
_keys = [[NSArray alloc] initWithObject: @"target"];
_keys = [[NSArray alloc] initWithObjects: @"target", nil];
}
return _keys;
}

View file

@ -100,7 +100,7 @@
static NSArray *_keys = nil;
if (_keys == nil)
{
_keys = [[NSArray alloc] initWithObject: @"target"];
_keys = [[NSArray alloc] initWithObjects: @"target", nil];
}
return _keys;
}