diff options
Diffstat (limited to 'vcl/source/window/window.cxx')
-rw-r--r-- | vcl/source/window/window.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/window/window.cxx b/vcl/source/window/window.cxx index 469933829ec3..b7166f0390d8 100644 --- a/vcl/source/window/window.cxx +++ b/vcl/source/window/window.cxx @@ -1984,7 +1984,7 @@ void Window::Tracking( const TrackingEvent& rTEvt ) pWrapper->Tracking( rTEvt ); } -void Window::StateChanged( StateChangedType eType ) +void Window::StateChanged(StateChangedType eType) { switch (eType) { @@ -2002,7 +2002,7 @@ void Window::StateChanged( StateChangedType eType ) break; //stuff that does invalidate the layout default: - queue_resize(); + queue_resize(eType); break; } } |