Commit bc9282fc authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Qt4: fix enum switch warning

parent f4709e52
...@@ -887,7 +887,7 @@ void FullscreenControllerWidget::customEvent( QEvent *event ) ...@@ -887,7 +887,7 @@ void FullscreenControllerWidget::customEvent( QEvent *event )
{ {
bool b_fs; bool b_fs;
switch( event->type() ) switch( (int)event->type() )
{ {
/* This is used when the 'i' hotkey is used, to force quick toggle */ /* This is used when the 'i' hotkey is used, to force quick toggle */
case FullscreenControlToggle_Type: case FullscreenControlToggle_Type:
......
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