Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Steve Lhomme
VLC
Commits
a5d95db0
Commit
a5d95db0
authored
Mar 18, 2013
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
skins2: remove unused data
parent
0f395d9f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
13 deletions
+0
-13
modules/gui/skins2/src/skin_common.hpp
modules/gui/skins2/src/skin_common.hpp
+0
-3
modules/gui/skins2/src/skin_main.cpp
modules/gui/skins2/src/skin_main.cpp
+0
-10
No files found.
modules/gui/skins2/src/skin_common.hpp
View file @
a5d95db0
...
...
@@ -108,9 +108,6 @@ struct intf_sys_t
/// The playlist thread
playlist_t
*
p_playlist
;
/// Message bank subscription
msg_subscription_t
*
p_sub
;
// "Singleton" objects: MUST be initialized to NULL !
/// Logger
Logger
*
p_logger
;
...
...
modules/gui/skins2/src/skin_main.cpp
View file @
a5d95db0
...
...
@@ -81,11 +81,6 @@ static int Open( vlc_object_t *p_this )
if
(
p_intf
->
p_sys
==
NULL
)
return
VLC_ENOMEM
;
// Suscribe to messages bank
#if 0
p_intf->p_sys->p_sub = vlc_Subscribe( p_intf );
#endif
p_intf
->
p_sys
->
p_input
=
NULL
;
p_intf
->
p_sys
->
p_playlist
=
pl_Get
(
p_intf
);
...
...
@@ -177,11 +172,6 @@ static void Close( vlc_object_t *p_this )
vlc_mutex_destroy
(
&
p_intf
->
p_sys
->
init_lock
);
vlc_cond_destroy
(
&
p_intf
->
p_sys
->
init_wait
);
// Unsubscribe from messages bank
#if 0
vlc_Unsubscribe( p_intf, p_intf->p_sys->p_sub );
#endif
// Destroy structure
free
(
p_intf
->
p_sys
);
}
...
...
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