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
253da208
Commit
253da208
authored
Feb 20, 2007
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
playlist_NodeAddInput() prototype changed, this commit fixes building of wxwidgets and MacOS X
parent
dde93e93
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
modules/gui/macosx/playlist.m
modules/gui/macosx/playlist.m
+1
-1
modules/gui/wxwidgets/dialogs/playlist.cpp
modules/gui/wxwidgets/dialogs/playlist.cpp
+1
-1
No files found.
modules/gui/macosx/playlist.m
View file @
253da208
...
...
@@ -1053,7 +1053,7 @@ NSLog( @"expandable" );
playlist_NodeAddInput
(
p_playlist
,
p_input
,
p_node
,
PLAYLIST_INSERT
,
i_position
==
-
1
?
PLAYLIST_END
:
i_position
+
i_item
);
PLAYLIST_END
:
i_position
+
i_item
,
VLC_FALSE
);
if
(
i_item
==
0
&&
!
b_enqueue
)
...
...
modules/gui/wxwidgets/dialogs/playlist.cpp
View file @
253da208
...
...
@@ -1316,7 +1316,7 @@ bool PlaylistFileDropTarget::OnDropFiles( wxCoord x, wxCoord y,
input_item_t
*
p_input
=
input_ItemNew
(
p
->
p_playlist
,
psz_utf8
,
psz_utf8
);
playlist_NodeAddInput
(
p
->
p_playlist
,
p_input
,
p_dest
,
PLAYLIST_PREPARSE
,
i_pos
);
p_dest
,
PLAYLIST_PREPARSE
,
i_pos
,
VLC_FALSE
);
wxDnDLocaleFree
(
psz_utf8
);
}
...
...
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