[vlc-commits] interfaces: "Add interface" subitems: being interface is implied.

Francois Cartegnie git at videolan.org
Thu Mar 24 21:48:14 CET 2011


vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Thu Mar 24 21:43:59 2011 +0100| [16973a8179bc40ed0da45291a47b728da1a636de] | committer: Francois Cartegnie

interfaces: "Add interface" subitems: being interface is implied.

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

 src/interface/interface.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/interface/interface.c b/src/interface/interface.c
index 7f44cc0..4fddf41 100644
--- a/src/interface/interface.c
+++ b/src/interface/interface.c
@@ -90,10 +90,10 @@ int intf_Create( vlc_object_t *p_this, const char *psz_module )
     text.psz_string = (char *)_("Console");
     var_Change( p_intf, "intf-add", VLC_VAR_ADDCHOICE, &val, &text );
     val.psz_string = (char *)"telnet";
-    text.psz_string = (char *)_("Telnet Interface");
+    text.psz_string = (char *)_("Telnet");
     var_Change( p_intf, "intf-add", VLC_VAR_ADDCHOICE, &val, &text );
     val.psz_string = (char *)"http";
-    text.psz_string = (char *)_("Web Interface");
+    text.psz_string = (char *)_("Web");
     var_Change( p_intf, "intf-add", VLC_VAR_ADDCHOICE, &val, &text );
     val.psz_string = (char *)"logger";
     text.psz_string = (char *)_("Debug logging");
@@ -228,7 +228,7 @@ static void* RunInterface( vlc_object_t *p_this )
 /**
  * MonitorLibVLCDeath: Used when b_should_run_on_first_thread is set.
  *
- * @param p_this: the interface object
+ * @param p_this: the interface object
  */
 static void * MonitorLibVLCDeath( vlc_object_t * p_this )
 {



More information about the vlc-commits mailing list