Commit 5aaaa2a3 authored by David Fuhrmann's avatar David Fuhrmann

macosx: remove stray code

parent 1f9c93f3
...@@ -75,8 +75,6 @@ ...@@ -75,8 +75,6 @@
IBOutlet id o_playlist_header; IBOutlet id o_playlist_header;
int currentResumeTimeout;
PLModel *o_model; PLModel *o_model;
} }
......
...@@ -946,22 +946,6 @@ ...@@ -946,22 +946,6 @@
return YES; return YES;
} }
- (void)updateAlertWindow:(NSTimer *)timer
{
NSAlert *alert = [timer userInfo];
--currentResumeTimeout;
if (currentResumeTimeout <= 0) {
[[alert window] close];
[NSApp abortModal];
}
NSString *buttonLabel = _NS("Restart playback");
buttonLabel = [buttonLabel stringByAppendingFormat:@" (%d)", currentResumeTimeout];
[[[alert buttons] objectAtIndex:2] setTitle:buttonLabel];
}
- (void)continuePlaybackWhereYouLeftOff:(input_thread_t *)p_input_thread - (void)continuePlaybackWhereYouLeftOff:(input_thread_t *)p_input_thread
{ {
NSDictionary *recentlyPlayedFiles = [[NSUserDefaults standardUserDefaults] objectForKey:@"recentlyPlayedMedia"]; NSDictionary *recentlyPlayedFiles = [[NSUserDefaults standardUserDefaults] objectForKey:@"recentlyPlayedMedia"];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment