]> git.sesse.net Git - vlc/commitdiff
modules/gui/minimal_macosx: Fix shortname and add shortcut, after funman answer to...
authorPierre d'Herbemont <pdherbemont@videolan.org>
Sun, 30 Sep 2007 10:37:45 +0000 (10:37 +0000)
committerPierre d'Herbemont <pdherbemont@videolan.org>
Sun, 30 Sep 2007 10:37:45 +0000 (10:37 +0000)
modules/gui/minimal_macosx/macosx.c

index 513be3b62505e63d2fdbe0bf0c43ef194d373fd8..535a4b540ba9841b136078517a43e092b15e4e39 100644 (file)
@@ -47,7 +47,8 @@ void E_(CloseVideoGL) ( vlc_object_t * );
 
 vlc_module_begin();
     /* Minimal interface. see intf.m */
-    set_shortname( _( "minimal_macosx" ));
+    set_shortname( "Minimal Macosx" );
+    add_shortcut( "minimal_macosx" );
     set_description( _("Minimal Mac OS X interface") );
     set_capability( "interface", 50 );
     set_callbacks( E_(OpenIntf), E_(CloseIntf) );