Removed unused methods from playbackcontroller.

CQTexperiment
vspader 2009-02-22 14:29:11 -08:00
parent a1f6139ea4
commit faf0df17f2
1 changed files with 0 additions and 26 deletions

View File

@ -465,32 +465,6 @@
}
/*
- (void)updateTimeField:(double)pos
{
NSString *text;
if (showTimeRemaining == NO)
{
int sec = (int)(pos);
text = [NSString stringWithFormat:NSLocalizedString(@"TimeElapsed", @""), sec/60, sec%60];
}
else
{
int sec = (int)(([[[playlistController currentEntry] length] doubleValue] - pos));
if (sec < 0)
sec = 0;
text = [NSString stringWithFormat:NSLocalizedString(@"TimeRemaining", @""), sec/60, sec%60];
}
[timeField setStringValue:text];
}
*/
- (IBAction)toggleShowTimeRemaining:(id)sender
{
showTimeRemaining = !showTimeRemaining;
// [self updateTimeField:position];
}
- (void)audioPlayer:(AudioPlayer *)player requestNextStream:(id)userInfo
{
PlaylistEntry *curEntry = (PlaylistEntry *)userInfo;