]> git.sesse.net Git - vlc/commitdiff
macosx: Disable broken code to get the buildbot back. And add a FIXME.
authorPierre d'Herbemont <pdherbemont@free.fr>
Wed, 14 Oct 2009 21:38:25 +0000 (23:38 +0200)
committerPierre d'Herbemont <pdherbemont@free.fr>
Wed, 14 Oct 2009 21:45:58 +0000 (23:45 +0200)
modules/gui/macosx/prefs_widgets.m

index 68f2c40b3affa232d4357f9ef19a9dce5ec27038..f1526efac82ba24788a0a6f17c94c033e9f21127 100644 (file)
@@ -2071,11 +2071,14 @@ o_textfield = [[[NSSecureTextField alloc] initWithFrame: s_rc] retain];       \
         {
             unsigned int i;
             o_keys_menu = [[NSMenu alloc] initWithTitle: @"Keys Menu"];
+#warning this doesn't work anymore. FIXME.
+#if 0
             for ( i = 0; i < sizeof(vlc_keys) / sizeof(key_descriptor_t); i++)
                 if( vlc_keys[i].psz_key_string )
                     POPULATE_A_KEY( o_keys_menu,
                         [NSString stringWithUTF8String:vlc_keys[i].psz_key_string]
                         , vlc_keys[i].i_key_code)
+#endif
         }
         [o_popup setMenu:[o_keys_menu copyWithZone:nil]];
         [o_popup selectItem:[[o_popup menu] itemWithTag:p_item->value.i]];