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 | 27fa658dc2e47f4491f68c00de7d1e9c66b4d538 (patch) | |
tree | 3811ff4e94ccae8e30cfe64987048df974fafff3 /framework/source/helper/persistentwindowstate.cxx | |
parent | d719f74091beaf063a1c4720fa194011c04138f3 (diff) |
#94144# use correct mask for window state
Diffstat (limited to 'framework/source/helper/persistentwindowstate.cxx')
-rw-r--r-- | framework/source/helper/persistentwindowstate.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/framework/source/helper/persistentwindowstate.cxx b/framework/source/helper/persistentwindowstate.cxx index 8c9387a4d332..8d023c57afa7 100644 --- a/framework/source/helper/persistentwindowstate.cxx +++ b/framework/source/helper/persistentwindowstate.cxx @@ -2,9 +2,9 @@ * * $RCSfile: persistentwindowstate.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: mba $ $Date: 2002-10-11 18:08:02 $ + * last change: $Author: ssa $ $Date: 2002-10-15 07:39:01 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -551,7 +551,7 @@ sal_Bool PersistentWindowState::implst_getFrameProps( const css::uno::Reference< if (pWindow!=NULL && pWindow->IsSystemWindow()) { ULONG nMask = WINDOWSTATE_MASK_ALL; - nMask &= ~(WINDOWSTATE_STATE_MINIMIZED); + nMask &= ~(WINDOWSTATE_MASK_MINIMIZED); sWindowState = ((SystemWindow*)pWindow)->GetWindowState( nMask ); } |