Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
5f5081a5
Commit
5f5081a5
authored
Nov 23, 2007
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MacOSX/Framework/VLCMediaListAspect.m: Use @"media" binding key, instead of @"Media".
parent
a1a89a9f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
extras/MacOSX/Framework/Sources/VLCMediaListAspect.m
extras/MacOSX/Framework/Sources/VLCMediaListAspect.m
+3
-3
No files found.
extras/MacOSX/Framework/Sources/VLCMediaListAspect.m
View file @
5f5081a5
...
@@ -36,7 +36,7 @@
...
@@ -36,7 +36,7 @@
@end
@end
@implementation
VLCMediaListAspect
(
KeyValueCodingCompliance
)
@implementation
VLCMediaListAspect
(
KeyValueCodingCompliance
)
/* For the @"
M
edia" key */
/* For the @"
m
edia" key */
-
(
int
)
countOfMedia
-
(
int
)
countOfMedia
{
{
return
[
self
count
];
return
[
self
count
];
...
@@ -53,7 +53,7 @@ static void HandleMediaListViewItemAdded(const libvlc_event_t *event, void *user
...
@@ -53,7 +53,7 @@ static void HandleMediaListViewItemAdded(const libvlc_event_t *event, void *user
NSAutoreleasePool
*
pool
=
[[
NSAutoreleasePool
alloc
]
init
];
NSAutoreleasePool
*
pool
=
[[
NSAutoreleasePool
alloc
]
init
];
id
self
=
user_data
;
id
self
=
user_data
;
int
index
=
event
->
u
.
media_list_view_item_added
.
index
;
int
index
=
event
->
u
.
media_list_view_item_added
.
index
;
[
self
didChange
:
NSKeyValueChangeInsertion
valuesAtIndexes
:[
NSIndexSet
indexSetWithIndex
:
index
]
forKey
:
@"
M
edia"
];
[
self
didChange
:
NSKeyValueChangeInsertion
valuesAtIndexes
:[
NSIndexSet
indexSetWithIndex
:
index
]
forKey
:
@"
m
edia"
];
[
pool
release
];
[
pool
release
];
}
}
static
void
HandleMediaListViewItemDeleted
(
const
libvlc_event_t
*
event
,
void
*
user_data
)
static
void
HandleMediaListViewItemDeleted
(
const
libvlc_event_t
*
event
,
void
*
user_data
)
...
@@ -61,7 +61,7 @@ static void HandleMediaListViewItemDeleted( const libvlc_event_t * event, void *
...
@@ -61,7 +61,7 @@ static void HandleMediaListViewItemDeleted( const libvlc_event_t * event, void *
NSAutoreleasePool
*
pool
=
[[
NSAutoreleasePool
alloc
]
init
];
NSAutoreleasePool
*
pool
=
[[
NSAutoreleasePool
alloc
]
init
];
id
self
=
user_data
;
id
self
=
user_data
;
int
index
=
event
->
u
.
media_list_view_item_deleted
.
index
;
int
index
=
event
->
u
.
media_list_view_item_deleted
.
index
;
[
self
didChange
:
NSKeyValueChangeRemoval
valuesAtIndexes
:[
NSIndexSet
indexSetWithIndex
:
index
]
forKey
:
@"
M
edia"
];
[
self
didChange
:
NSKeyValueChangeRemoval
valuesAtIndexes
:[
NSIndexSet
indexSetWithIndex
:
index
]
forKey
:
@"
m
edia"
];
[
pool
release
];
[
pool
release
];
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment