]> git.sesse.net Git - vlc/blobdiff - modules/gui/qt4/util/customwidgets.cpp
qt4: Add OSX to supported platforms of the towlower function.
[vlc] / 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