Commit 18786139 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

MacOSX/Framework/VLCMediaPlayer.m: Use the newer form of trigger key for key changes.

parent 5870b4cf
...@@ -124,6 +124,11 @@ static void HandleMediaInstanceStateChanged(const libvlc_event_t * event, void * ...@@ -124,6 +124,11 @@ static void HandleMediaInstanceStateChanged(const libvlc_event_t * event, void *
@implementation VLCMediaPlayer @implementation VLCMediaPlayer
/* Bindings */
+ (id)keysPathsForValuesAffectingPlaying { return [NSSet setWithObject:@"state"]; }
+ (id)keysPathsForValuesAffectingSeekable { return [NSSet setWithObjects:@"state", @"media"]; }
/* Contructor */
- (id)init - (id)init
{ {
return [self initWithDrawable:nil]; return [self initWithDrawable:nil];
...@@ -536,8 +541,6 @@ static const VLCMediaPlayerState libvlc_to_local_state[] = ...@@ -536,8 +541,6 @@ static const VLCMediaPlayerState libvlc_to_local_state[] =
{ {
if (self = [super init]) if (self = [super init])
{ {
[VLCMediaPlayer setKeys:[NSArray arrayWithObject:@"state"] triggerChangeNotificationsForDependentKey:@"playing"];
[VLCMediaPlayer setKeys:[NSArray arrayWithObjects:@"state", @"media", nil] triggerChangeNotificationsForDependentKey:@"seekable"];
delegate = nil; delegate = nil;
media = nil; media = nil;
cachedTime = [[VLCTime nullTime] retain]; cachedTime = [[VLCTime nullTime] retain];
......
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