Fix deprecation warnings about handleWindowStateChange() visibility.

This commit is contained in:
and3md 2017-05-06 15:58:31 +02:00
parent 36f3fa5382
commit e90f0f33a6
1 changed files with 4 additions and 0 deletions

View File

@ -362,6 +362,10 @@ class SDLWindow : Window {
_platform.closeWindow(this);
}
override protected void handleWindowStateChange(WindowState newState, Rect newWindowRect = RECT_VALUE_IS_NOT_SET) {
super.handleWindowStateChange(newState, newWindowRect);
}
override bool setWindowState(WindowState newState, bool activate = false, Rect newWindowRect = RECT_VALUE_IS_NOT_SET) {
// override for particular platforms