mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-25 09:00:56 +00:00
Correct indentation.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@28901 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
4974760a67
commit
10130ce9e9
1 changed files with 38 additions and 31 deletions
|
@ -447,6 +447,9 @@ static NSImage *spinningImages[MaxCount];
|
|||
- (id)initWithCoder:(NSCoder *)aDecoder
|
||||
{
|
||||
self = [super initWithCoder: aDecoder];
|
||||
if (!self)
|
||||
return nil;
|
||||
|
||||
if ([aDecoder allowsKeyedCoding])
|
||||
{
|
||||
// id matrix = [aDecoder decodeObjectForKey: @"NSDrawMatrix"];
|
||||
|
@ -511,7 +514,11 @@ static NSImage *spinningImages[MaxCount];
|
|||
|
||||
@implementation NSProgressIndicator (GNUstepExtensions)
|
||||
|
||||
- (BOOL)isVertical { return _isVertical; }
|
||||
- (BOOL)isVertical
|
||||
{
|
||||
return _isVertical;
|
||||
}
|
||||
|
||||
- (void)setVertical:(BOOL)flag
|
||||
{
|
||||
if (_isVertical != flag)
|
||||
|
|
Loading…
Reference in a new issue