mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
(MutableString): Conform to ValueSetting, not ValueHolding.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@120 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
332baa7b37
commit
ace8226d35
2 changed files with 4 additions and 4 deletions
|
@ -109,7 +109,7 @@ typedef unsigned short Character;
|
|||
|
||||
@end
|
||||
|
||||
@protocol MutableString <ValueHolding>
|
||||
@protocol MutableString <ValueSetting>
|
||||
|
||||
+ (MutableString*) stringWithCapacity: (unsigned)capacity;
|
||||
- initWithCapacity: (unsigned)capacity;
|
||||
|
@ -142,7 +142,7 @@ typedef unsigned short Character;
|
|||
|
||||
@interface MutableCString : MutableString
|
||||
{
|
||||
char * _contents_chars;
|
||||
char *_contents_chars;
|
||||
int _count;
|
||||
int _capacity;
|
||||
}
|
||||
|
|
|
@ -109,7 +109,7 @@ typedef unsigned short Character;
|
|||
|
||||
@end
|
||||
|
||||
@protocol MutableString <ValueHolding>
|
||||
@protocol MutableString <ValueSetting>
|
||||
|
||||
+ (MutableString*) stringWithCapacity: (unsigned)capacity;
|
||||
- initWithCapacity: (unsigned)capacity;
|
||||
|
@ -142,7 +142,7 @@ typedef unsigned short Character;
|
|||
|
||||
@interface MutableCString : MutableString
|
||||
{
|
||||
char * _contents_chars;
|
||||
char *_contents_chars;
|
||||
int _count;
|
||||
int _capacity;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue