Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
aad95f66
Commit
aad95f66
authored
Nov 20, 2006
by
Rafaël Carré
Browse files
Wxwidgets playlist fix
parent
75c86db7
Changes
2
Hide whitespace changes
Inline
Side-by-side
modules/gui/wxwidgets/dialogs/wizard.cpp
View file @
aad95f66
...
...
@@ -721,7 +721,7 @@ void wizInputPage::OnWizardPageChanging(wxWizardEvent& event)
VLC_OBJECT_PLAYLIST
,
FIND_ANYWHERE
);
if
(
p_playlist
)
{
playlist_item_t
*
p_item
=
playlist_ItemGetById
(
p_playlist
,
(
int
)
data
,
VLC_
TRU
E
);
playlist_item_t
*
p_item
=
playlist_ItemGetById
(
p_playlist
,
(
int
)
data
,
VLC_
FALS
E
);
if
(
p_item
)
{
p_parent
->
SetMrl
(
(
const
char
*
)
p_item
->
p_input
->
psz_uri
);
...
...
modules/gui/wxwidgets/playlist_manager.cpp
View file @
aad95f66
...
...
@@ -355,7 +355,7 @@ void PlaylistManager::AppendItem( wxCommandEvent& event )
node
=
FindItem
(
treectrl
->
GetRootItem
(),
p_add
->
i_node
);
if
(
!
node
.
IsOk
()
)
goto
update
;
p_item
=
playlist_ItemGetById
(
p_playlist
,
p_add
->
i_item
,
VLC_
TRU
E
);
p_item
=
playlist_ItemGetById
(
p_playlist
,
p_add
->
i_item
,
VLC_
FALS
E
);
if
(
!
p_item
)
goto
update
;
item
=
FindItem
(
treectrl
->
GetRootItem
(),
p_add
->
i_item
);
...
...
Write
Preview
Supports
Markdown
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