mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-06-04 19:11:17 +00:00
Fix spacing.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@19512 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
d9dae26eb4
commit
3a75b5243f
1 changed files with 6 additions and 5 deletions
|
@ -361,19 +361,20 @@ static NSCharacterSet* nonNumericSet=nil;
|
||||||
//====================================================================
|
//====================================================================
|
||||||
@implementation GSWElementIDString (GSWElementIDStringGSW)
|
@implementation GSWElementIDString (GSWElementIDStringGSW)
|
||||||
|
|
||||||
- (void)setString:(NSString *)aString
|
- (void)setString: (NSString *)aString
|
||||||
{
|
{
|
||||||
if (!aString)
|
if (!aString)
|
||||||
{
|
{
|
||||||
aString=@"";
|
aString = @"";
|
||||||
}
|
}
|
||||||
if (!_string)
|
|
||||||
|
if (!_string)
|
||||||
{
|
{
|
||||||
_string = [[NSMutableString alloc] initWithString:aString];
|
_string = [[NSMutableString alloc] initWithString: aString];
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
[_string setString:aString];
|
[_string setString: aString];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//--------------------------------------------------------------------
|
//--------------------------------------------------------------------
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue