Skip to content

Commit

Permalink
Sorry, forgot to update the demo project to match new API.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeabdullah authored and kelan committed Sep 7, 2010
1 parent 1c9d880 commit 14d5c05
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Code/SPIDAppController.m
Expand Up @@ -34,7 +34,7 @@ - (void)applicationDidFinishLaunching:(NSNotification *)notification
[self changeForegroundColor:_foregroundColorWell];
[self changeBackgroundColor:_backgroundColorWell];

[_turboFan setDrawBackground:NO];
[_turboFan setDrawsBackground:NO];

[self takeThreadedFrom:_threadedAnimationButton];
}
Expand Down Expand Up @@ -101,21 +101,21 @@ - (void)finishDeterminateDemo

- (IBAction)changeForegroundColor:(id)sender
{
[_turboFan setForeColor:[sender color]];
[_turboFan setColor:[sender color]];
}


- (IBAction)changeBackgroundColor:(id)sender
{
[_turboFan setBackColor:[sender color]];
[_turboFan setBackgroundColor:[sender color]];
}

- (IBAction)toggleDrawBackground:(id)sender
{
if([sender state] == NSOnState)
[_turboFan setDrawBackground:YES];
[_turboFan setDrawsBackground:YES];
else
[_turboFan setDrawBackground:NO];
[_turboFan setDrawsBackground:NO];
}

- (IBAction)takeThreadedFrom:(id)sender
Expand Down

0 comments on commit 14d5c05

Please sign in to comment.