[vlc-commits] interface: remove use of obsolete logger interface
Lyndon Brown
git at videolan.org
Thu Mar 29 17:23:53 CEST 2018
vlc/vlc-3.0 | branch: master | Lyndon Brown <jnqnfe at gmail.com> | Fri Mar 23 01:34:56 2018 +0000| [a0c6a1d48661406bad19957745888fff13578d35] | committer: Rémi Denis-Courmont
interface: remove use of obsolete logger interface
patch attached to remove use of the obsolete logger interface in the
core interface code.
Signed-off-by: Rémi Denis-Courmont <remi at remlab.net>
(cherry picked from commit f0e01208a39ff1b9f17c6555ee793be4e7c9ecd8)
Signed-off-by: Rémi Denis-Courmont <remi at remlab.net>
> http://git.videolan.org/gitweb.cgi/vlc/vlc-3.0.git/?a=commit;h=a0c6a1d48661406bad19957745888fff13578d35
---
src/interface/interface.c | 3 ---
1 file changed, 3 deletions(-)
diff --git a/src/interface/interface.c b/src/interface/interface.c
index a100e048e4..6155d5ab7c 100644
--- a/src/interface/interface.c
+++ b/src/interface/interface.c
@@ -95,9 +95,6 @@ int intf_Create( playlist_t *playlist, const char *chain )
val.psz_string = (char *)"http,none";
text.psz_string = (char *)_("Web");
var_Change( p_intf, "intf-add", VLC_VAR_ADDCHOICE, &val, &text );
- val.psz_string = (char *)"logger,none";
- text.psz_string = (char *)_("Debug logging");
- var_Change( p_intf, "intf-add", VLC_VAR_ADDCHOICE, &val, &text );
val.psz_string = (char *)"gestures,none";
text.psz_string = (char *)_("Mouse Gestures");
var_Change( p_intf, "intf-add", VLC_VAR_ADDCHOICE, &val, &text );
More information about the vlc-commits
mailing list