mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
Fix switch warning in RenderWidget
The compiler was throwing a bunch of `-Wswitch` warnings from RenderWidget because of unhandled branches, so I added a default branch to quiet it.
This commit is contained in:
@ -454,6 +454,8 @@ bool RenderWidget::event(QEvent* event)
|
|||||||
case QEvent::Close:
|
case QEvent::Close:
|
||||||
emit Closed();
|
emit Closed();
|
||||||
break;
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
return QWidget::event(event);
|
return QWidget::event(event);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user