[vlc-commits] commit: qt4: Add OSX to supported platforms of the towlower function. ( Juho Vähä-Herttua )
git at videolan.org
git at videolan.org
Thu Jul 22 16:25:31 CEST 2010
vlc | branch: master | Juho Vähä-Herttua <juhovh at iki.fi> | Thu Jul 22 14:53:27 2010 +0300| [3056962ed16e48b438dc43cf1ca5092615821e4a] | committer: Rémi Denis-Courmont
qt4: Add OSX to supported platforms of the towlower function.
Signed-off-by: Rémi Denis-Courmont <remi at remlab.net>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=3056962ed16e48b438dc43cf1ca5092615821e4a
---
modules/gui/qt4/util/customwidgets.cpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/gui/qt4/util/customwidgets.cpp b/modules/gui/qt4/util/customwidgets.cpp
index 00e0296..a83d94d 100644
--- a/modules/gui/qt4/util/customwidgets.cpp
+++ b/modules/gui/qt4/util/customwidgets.cpp
@@ -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
More information about the vlc-commits
mailing list