Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
34f76d16
Commit
34f76d16
authored
May 16, 2009
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed skins2 compilation.
parent
d91172cf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
modules/gui/skins2/src/vlcproc.cpp
modules/gui/skins2/src/vlcproc.cpp
+5
-5
No files found.
modules/gui/skins2/src/vlcproc.cpp
View file @
34f76d16
...
...
@@ -410,11 +410,11 @@ int VlcProc::onIntfShow( vlc_object_t *pObj, const char *pVariable,
int
VlcProc
::
onItemChange
(
vlc_object_t
*
pObj
,
const
char
*
pVariable
,
vlc_value_t
old
Val
,
vlc_value_t
newV
al
,
vlc_value_t
old
val
,
vlc_value_t
newv
al
,
void
*
pParam
)
{
VlcProc
*
pThis
=
(
VlcProc
*
)
pParam
;
input_item_t
*
p_item
=
newval
.
p_address
;
input_item_t
*
p_item
=
static_cast
<
input_item_t
*>
(
newval
.
p_address
)
;
// Update the stream variable
pThis
->
updateStreamName
();
...
...
@@ -475,11 +475,11 @@ int VlcProc::onItemDelete( vlc_object_t *pObj, const char *pVariable,
int
VlcProc
::
onPlaylistChange
(
vlc_object_t
*
pObj
,
const
char
*
pVariable
,
vlc_value_t
old
Val
,
vlc_value_t
newV
al
,
vlc_value_t
old
val
,
vlc_value_t
newv
al
,
void
*
pParam
)
{
VlcProc
*
pThis
=
(
VlcProc
*
)
pParam
;
input_item_t
*
p_item
=
newval
.
p_address
;
input_item_t
*
p_item
=
static_cast
<
input_item_t
*>
(
newval
.
p_address
)
;
AsyncQueue
*
pQueue
=
AsyncQueue
::
instance
(
pThis
->
getIntf
()
);
...
...
@@ -493,7 +493,7 @@ int VlcProc::onPlaylistChange( vlc_object_t *pObj, const char *pVariable,
oldVal.i_int );
pQueue->push( CmdGenericPtr( pCmdTree ) , true );
#endif
pCmdTree
=
new
CmdPlaytreeUpdate
(
pThis
->
getIntf
(),
p_item
->
i_id
);
CmdPlaytreeUpdate
*
pCmdTree
=
new
CmdPlaytreeUpdate
(
pThis
->
getIntf
(),
p_item
->
i_id
);
pQueue
->
push
(
CmdGenericPtr
(
pCmdTree
)
,
true
);
return
VLC_SUCCESS
;
...
...
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