]> git.sesse.net Git - vlc/commitdiff
qt4: Add OSX to supported platforms of the towlower function.
authorJuho Vähä-Herttua <juhovh@iki.fi>
Thu, 22 Jul 2010 11:53:27 +0000 (14:53 +0300)
committerRémi Denis-Courmont <remi@remlab.net>
Thu, 22 Jul 2010 14:25:04 +0000 (17:25 +0300)
Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
modules/gui/qt4/util/customwidgets.cpp

index 00e0296c45e246aa4664984bc7647c965d777bfb..a83d94dbd9e44510cdcda725238805069f0e4fa7 100644 (file)
@@ -392,7 +392,7 @@ int qtEventToVLCKey( QKeyEvent *e )
 
     if( qtk <= 0xff )
         /* VLC and X11 use lowercase whereas Qt uses uppercase */
-#if defined( __STDC_ISO_10646__ ) || defined( _WIN32 )
+#if defined( __STDC_ISO_10646__ ) || defined( _WIN32 ) || defined( __APPLE__ )
         i_vlck = towlower( qtk );
 #else
 # error FIXME