setAnimationDelay: Fix typo

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@21311 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Fabien Vallon 2005-06-16 12:34:13 +00:00
parent d91f6493fd
commit 2560b02680
2 changed files with 2 additions and 2 deletions

View file

@ -65,7 +65,7 @@
//
- (void)animate:(id)sender;
- (NSTimeInterval)animationDelay;
- (void)setAnimimationDelay:(NSTimeInterval)delay;
- (void)setAnimationDelay:(NSTimeInterval)delay;
- (void)startAnimation:(id)sender;
- (void)stopAnimation:(id)sender;
- (BOOL)usesThreadedAnimation;

View file

@ -80,7 +80,7 @@ static NSColor *fillColour = nil;
}
- (NSTimeInterval)animationDelay { return _animationDelay; }
- (void)setAnimimationDelay:(NSTimeInterval)delay
- (void)setAnimationDelay:(NSTimeInterval)delay
{
_animationDelay = delay;
}