mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-23 11:41:20 +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
82e0ed02c4
commit
15bc17fa7d
1 changed files with 6 additions and 5 deletions
|
@ -361,19 +361,20 @@ static NSCharacterSet* nonNumericSet=nil;
|
|||
//====================================================================
|
||||
@implementation GSWElementIDString (GSWElementIDStringGSW)
|
||||
|
||||
- (void)setString:(NSString *)aString
|
||||
- (void)setString: (NSString *)aString
|
||||
{
|
||||
if (!aString)
|
||||
{
|
||||
aString=@"";
|
||||
aString = @"";
|
||||
}
|
||||
if (!_string)
|
||||
|
||||
if (!_string)
|
||||
{
|
||||
_string = [[NSMutableString alloc] initWithString:aString];
|
||||
_string = [[NSMutableString alloc] initWithString: aString];
|
||||
}
|
||||
else
|
||||
{
|
||||
[_string setString:aString];
|
||||
[_string setString: aString];
|
||||
}
|
||||
}
|
||||
//--------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in a new issue