mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-20 12:16:40 +00:00
Change names from "Concrete"-style to "G"-style.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@368 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
d596d043fc
commit
958c22dda8
5 changed files with 21 additions and 22 deletions
|
@ -1,4 +1,4 @@
|
|||
/* NSArray - Array object to hold other objects.
|
||||
/* Concrete implementation of NSArray based on GNU Array class
|
||||
Copyright (C) 1995 Free Software Foundation, Inc.
|
||||
|
||||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
|
@ -21,13 +21,13 @@
|
|||
Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
*/
|
||||
|
||||
#include <foundation/NSConcreteArray.h>
|
||||
#include <foundation/NSGArray.h>
|
||||
#include <objects/NSArray.h>
|
||||
#include <objects/behavior.h>
|
||||
#include <objects/Array.h>
|
||||
#include <objects/ArrayPrivate.h>
|
||||
|
||||
@implementation NSConcreteArray
|
||||
@implementation NSGArray
|
||||
|
||||
+ (void) initialize
|
||||
{
|
||||
|
@ -36,7 +36,7 @@
|
|||
if (!done)
|
||||
{
|
||||
done = 1;
|
||||
class_add_behavior([NSConcreteArray class], [Array class]);
|
||||
class_add_behavior([NSGArray class], [Array class]);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -74,7 +74,7 @@
|
|||
|
||||
@end
|
||||
|
||||
@implementation NSConcreteMutableArray
|
||||
@implementation NSGMutableArray
|
||||
|
||||
+ (void) initialize
|
||||
{
|
||||
|
@ -82,9 +82,8 @@
|
|||
if (!done)
|
||||
{
|
||||
done = 1;
|
||||
class_add_behavior([NSConcreteMutableArray class],
|
||||
[NSConcreteArray class]);
|
||||
class_add_behavior([NSConcreteMutableArray class], [Array class]);
|
||||
class_add_behavior([NSGMutableArray class], [NSGArray class]);
|
||||
class_add_behavior([NSGMutableArray class], [Array class]);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue