[vlc-commits] interface: remove use of obsolete logger interface

Lyndon Brown git at videolan.org
Thu Mar 29 17:23:08 CEST 2018


vlc | branch: master | Lyndon Brown <jnqnfe at gmail.com> | Fri Mar 23 01:34:56 2018 +0000| [f0e01208a39ff1b9f17c6555ee793be4e7c9ecd8] | 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>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=f0e01208a39ff1b9f17c6555ee793be4e7c9ecd8
---

 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