Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
47b44b00
Commit
47b44b00
authored
Apr 30, 2006
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* make sure that the count of objects in the playlist is up-to-date
parent
884e84ee
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
0 deletions
+23
-0
modules/gui/macosx/playlist.m
modules/gui/macosx/playlist.m
+23
-0
No files found.
modules/gui/macosx/playlist.m
View file @
47b44b00
...
@@ -518,6 +518,29 @@ belongs to an Apple hidden private API, and then can "disapear" at any time*/
...
@@ -518,6 +518,29 @@ belongs to an Apple hidden private API, and then can "disapear" at any time*/
[
o_outline_view
reloadData
];
[
o_outline_view
reloadData
];
[[[[
VLCMain
sharedInstance
]
getWizard
]
getPlaylistWizard
]
reloadOutlineView
];
[[[[
VLCMain
sharedInstance
]
getWizard
]
getPlaylistWizard
]
reloadOutlineView
];
[[[[
VLCMain
sharedInstance
]
getBookmarks
]
getDataTable
]
reloadData
];
[[[[
VLCMain
sharedInstance
]
getBookmarks
]
getDataTable
]
reloadData
];
playlist_t
*
p_playlist
=
vlc_object_find
(
VLCIntf
,
VLC_OBJECT_PLAYLIST
,
FIND_ANYWHERE
);
if
(
!
p_playlist
)
return
;
if
(
p_playlist
->
i_size
>=
2
)
{
[
o_status_field
setStringValue
:
[
NSString
stringWithFormat
:
_NS
(
"%i items in the playlist"
),
p_playlist
->
i_size
]];
}
else
{
if
(
p_playlist
->
i_size
==
0
)
{
[
o_status_field
setStringValue
:
_NS
(
"No items in the playlist"
)];
}
else
{
[
o_status_field
setStringValue
:
_NS
(
"1 item in the playlist"
)];
}
}
vlc_object_release
(
p_playlist
);
}
}
-
(
void
)
playModeUpdated
-
(
void
)
playModeUpdated
...
...
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