]> git.sesse.net Git - vlc/commitdiff
* src/interface/interface.c: added the gestures interface to the interfaces list.
authorGildas Bazin <gbazin@videolan.org>
Tue, 13 Jan 2004 18:45:06 +0000 (18:45 +0000)
committerGildas Bazin <gbazin@videolan.org>
Tue, 13 Jan 2004 18:45:06 +0000 (18:45 +0000)
src/interface/interface.c

index 0b44381bf8985b18d9746a01f34ee7023b1eb2de..94abfb199a013423f9335e1b337bd5d13a64cddf 100644 (file)
@@ -4,7 +4,7 @@
  * interface, such as command line.
  *****************************************************************************
  * Copyright (C) 1998-2004 VideoLAN
- * $Id: interface.c,v 1.110 2004/01/10 12:35:33 zorglub Exp $
+ * $Id: interface.c,v 1.111 2004/01/13 18:45:06 gbazin Exp $
  *
  * Authors: Vincent Seguin <seguin@via.ecp.fr>
  *
@@ -286,6 +286,8 @@ static void RunInterface( intf_thread_t *p_intf )
     var_Change( p_intf, "intf-add", VLC_VAR_ADDCHOICE, &val, &text );
     val.psz_string = "sap"; text.psz_string = "SAP interface";
     var_Change( p_intf, "intf-add", VLC_VAR_ADDCHOICE, &val, &text );
+    val.psz_string = "gestures"; text.psz_string = "Mouse gestures control";
+    var_Change( p_intf, "intf-add", VLC_VAR_ADDCHOICE, &val, &text );
 
     var_AddCallback( p_intf, "intf-add", AddIntfCallback, NULL );