]> git.sesse.net Git - vlc/commitdiff
interfaces: "Add interface" subitems: being interface is implied.
authorFrancois Cartegnie <fcvlcdev@free.fr>
Thu, 24 Mar 2011 20:43:59 +0000 (21:43 +0100)
committerFrancois Cartegnie <fcvlcdev@free.fr>
Thu, 24 Mar 2011 20:47:59 +0000 (21:47 +0100)
src/interface/interface.c

index 7f44cc0963fa63add9aae4db84dc7a867479c279..4fddf41130a0be04cd0cf02a36b6e54f5b576666 100644 (file)
@@ -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 )
 {