Commit 43848e7e authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt: fix Win32 compilation

Mingw, Mingw-w64 and MSVC support towlower
parent 437dc399
......@@ -361,7 +361,7 @@ int qtEventToVLCKey( QKeyEvent *e )
if( qtk <= 0xff )
/* VLC and X11 use lowercase whereas Qt uses uppercase */
#ifdef __STDC_ISO_10646__
#if defined( __STDC_ISO_10646__ ) || defined( _WIN32 )
i_vlck = towlower( qtk );
#else
# error FIXME
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment