Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
8bdb9317
Commit
8bdb9317
authored
May 17, 2006
by
Clément Stenac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Forgot to change the deletion function
parent
1e8f2940
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
modules/gui/wxwidgets/dialogs/playlist.cpp
modules/gui/wxwidgets/dialogs/playlist.cpp
+2
-2
No files found.
modules/gui/wxwidgets/dialogs/playlist.cpp
View file @
8bdb9317
...
@@ -898,7 +898,7 @@ void Playlist::DeleteTreeItem( wxTreeItemId item )
...
@@ -898,7 +898,7 @@ void Playlist::DeleteTreeItem( wxTreeItemId item )
return
;
return
;
}
}
if
(
p_item
->
i_children
==
-
1
)
DeleteItem
(
p_item
->
i_id
);
if
(
p_item
->
i_children
==
-
1
)
DeleteItem
(
p_item
->
p_input
->
i_id
);
else
DeleteNode
(
p_item
);
else
DeleteNode
(
p_item
);
RemoveItem
(
p_item
->
i_id
);
RemoveItem
(
p_item
->
i_id
);
...
@@ -907,7 +907,7 @@ void Playlist::DeleteTreeItem( wxTreeItemId item )
...
@@ -907,7 +907,7 @@ void Playlist::DeleteTreeItem( wxTreeItemId item )
void
Playlist
::
DeleteItem
(
int
item_id
)
void
Playlist
::
DeleteItem
(
int
item_id
)
{
{
playlist_Delete
FromItemId
(
p_playlist
,
item_id
);
playlist_Delete
AllFromInput
(
p_playlist
,
item_id
);
}
}
void
Playlist
::
DeleteNode
(
playlist_item_t
*
p_item
)
void
Playlist
::
DeleteNode
(
playlist_item_t
*
p_item
)
...
...
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