mirror of
https://github.com/gnustep/libs-gdl2.git
synced 2025-06-01 17:52:14 +00:00
* 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:
parent
05f5dbcb4c
commit
ac39e74888
4 changed files with 7 additions and 3 deletions
|
@ -3,6 +3,10 @@
|
||||||
add warning about method not implemented
|
add warning about method not implemented
|
||||||
* EOAdaptors/SQLiteAdaptor/LoginPanel/SQLite3LoginPanel.m
|
* EOAdaptors/SQLiteAdaptor/LoginPanel/SQLite3LoginPanel.m
|
||||||
use NSOpenPanel when opening a file
|
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>
|
2013-03-08: Sebastian Reitenbach <sebastia@l00-bugdead-prods.de>
|
||||||
* Apps/EOModelEditor/EOMEDocument.h
|
* Apps/EOModelEditor/EOMEDocument.h
|
||||||
|
|
|
@ -73,7 +73,7 @@
|
||||||
static NSArray *_keys = nil;
|
static NSArray *_keys = nil;
|
||||||
if (_keys == nil)
|
if (_keys == nil)
|
||||||
{
|
{
|
||||||
_keys = [[NSArray alloc] initWithObject: @"identifier"];
|
_keys = [[NSArray alloc] initWithObjects: @"identifier", nil];
|
||||||
}
|
}
|
||||||
return _keys;
|
return _keys;
|
||||||
}
|
}
|
||||||
|
|
|
@ -73,7 +73,7 @@
|
||||||
static NSArray *_keys = nil;
|
static NSArray *_keys = nil;
|
||||||
if (_keys == nil)
|
if (_keys == nil)
|
||||||
{
|
{
|
||||||
_keys = [[NSArray alloc] initWithObject: @"target"];
|
_keys = [[NSArray alloc] initWithObjects: @"target", nil];
|
||||||
}
|
}
|
||||||
return _keys;
|
return _keys;
|
||||||
}
|
}
|
||||||
|
|
|
@ -100,7 +100,7 @@
|
||||||
static NSArray *_keys = nil;
|
static NSArray *_keys = nil;
|
||||||
if (_keys == nil)
|
if (_keys == nil)
|
||||||
{
|
{
|
||||||
_keys = [[NSArray alloc] initWithObject: @"target"];
|
_keys = [[NSArray alloc] initWithObjects: @"target", nil];
|
||||||
}
|
}
|
||||||
return _keys;
|
return _keys;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue