diff options
author | Stephan Schäfer <ssa@openoffice.org> | 2002-10-15 06:40:27 +0000 |
---|---|---|
committer | Stephan Schäfer <ssa@openoffice.org> | 2002-10-15 06:40:27 +0000 |
commit | 42453589d0efd7dac7011cf4eb747b8009300773 (patch) | |
tree | a210a3c7af6d340edde786604cc82543f72b3687 /vcl/source/window/syswin.cxx | |
parent | 26d652ac520d96c49c9bad6792c9dba73a133cea (diff) |
#94144# use correct mask for window state
Diffstat (limited to 'vcl/source/window/syswin.cxx')
-rw-r--r-- | vcl/source/window/syswin.cxx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/vcl/source/window/syswin.cxx b/vcl/source/window/syswin.cxx index cbf88e786670..2008ec4029da 100644 --- a/vcl/source/window/syswin.cxx +++ b/vcl/source/window/syswin.cxx @@ -2,9 +2,9 @@ * * $RCSfile: syswin.cxx,v $ * - * $Revision: 1.29 $ + * $Revision: 1.30 $ * - * last change: $Author: ssa $ $Date: 2002-10-14 09:38:20 $ + * last change: $Author: ssa $ $Date: 2002-10-15 07:40:27 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -692,8 +692,7 @@ void SystemWindow::GetWindowStateData( WindowStateData& rData ) const { // #94144# allow Minimize again, should be masked out when read from configuration // 91625 - ignore Minimize - //if ( !(nValidMask&WINDOWSTATE_MASK_MINIMIZED) ) - if ( !(nValidMask&WINDOWSTATE_STATE_MINIMIZED) ) + if ( !(nValidMask&WINDOWSTATE_MASK_MINIMIZED) ) aState.mnState &= ~(WINDOWSTATE_STATE_MINIMIZED); rData.SetState( aState.mnState ); } |