mirror of https://github.com/buggins/dlangui.git
Fix deprecation warnings about handleWindowStateChange() visibility.
This commit is contained in:
parent
36f3fa5382
commit
e90f0f33a6
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue