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

jnqnfe@gmail.com git at videolan.org
Thu Mar 29 17:20:13 CEST 2018


vlc | branch: master | jnqnfe at gmail.com <jnqnfe at gmail.com> | Fri Mar 23 01:34:56 2018 +0000| [e1671e404f5c815afc480563fed5f14c225fe589] | 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.
>From 391b1deb4df4fbb98c13f870aa8a9a22bf839208 Mon Sep 17 00:00:00 2001
From: Lyndon Brown <jnqnfe at gmail.com>
Date: Fri, 23 Mar 2018 01:30:01 +0000
Subject: interface: remove obsolete logger interface

Signed-off-by: Rémi Denis-Courmont <remi at remlab.net>

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

 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