mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
Implement missing init method.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@20041 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
dc6b3fb628
commit
80e3f9b87a
2 changed files with 13 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2004-09-09 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/GSString.m: Implement init for GSPlaceHolderString
|
||||
to return an empty inline unicode string.
|
||||
|
||||
2004-09-07 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* Documentation/HtmlNav/docs-web.html: Update to work with current
|
||||
|
|
|
@ -340,6 +340,14 @@ setup(void)
|
|||
return; // Placeholders never get deallocated.
|
||||
}
|
||||
|
||||
/*
|
||||
* Replace self with an empty inline unicode string.
|
||||
*/
|
||||
- (id) init
|
||||
{
|
||||
return [self initWithCharacters: 0 length: 0];
|
||||
}
|
||||
|
||||
/*
|
||||
* Replace self with an inline unicode string.
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue