mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 00:30:53 +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
8b9685f81f
commit
d6ca992407
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>
|
2004-09-07 Adam Fedor <fedor@gnu.org>
|
||||||
|
|
||||||
* Documentation/HtmlNav/docs-web.html: Update to work with current
|
* Documentation/HtmlNav/docs-web.html: Update to work with current
|
||||||
|
|
|
@ -340,6 +340,14 @@ setup(void)
|
||||||
return; // Placeholders never get deallocated.
|
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.
|
* Replace self with an inline unicode string.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue