diff options
author | Rüdiger Timm <rt@openoffice.org> | 2004-06-17 10:44:17 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2004-06-17 10:44:17 +0000 |
commit | dd1fb301ccf421de1673e66d8b18dc4bd458fe8f (patch) | |
tree | bcac02e1ccbd7b866ce715c300d735a5fc7faeba | |
parent | 777bd108f4ff95957ea1e457dae6e48cdadb9277 (diff) |
INTEGRATION: CWS gh6 (1.170.2); FILE MERGED
2004/03/17 18:33:01 pl 1.170.2.1: #i26400# fixed bug in frame state evaluation
-rw-r--r-- | vcl/unx/source/window/salframe.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/unx/source/window/salframe.cxx b/vcl/unx/source/window/salframe.cxx index a5846dbc4bfb..ded1c2f987a7 100644 --- a/vcl/unx/source/window/salframe.cxx +++ b/vcl/unx/source/window/salframe.cxx @@ -2,9 +2,9 @@ * * $RCSfile: salframe.cxx,v $ * - * $Revision: 1.177 $ + * $Revision: 1.178 $ * - * last change: $Author: rt $ $Date: 2004-05-24 09:53:08 $ + * last change: $Author: rt $ $Date: 2004-06-17 11:44:17 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1464,7 +1464,7 @@ void X11SalFrame::SetWindowState( const SalFrameState *pState ) if (pState->mnState & SAL_FRAMESTATE_MAXIMIZED) { nShowState_ = SHOWSTATE_NORMAL; - if( ! (pState->mnMask & (SAL_FRAMESTATE_MAXIMIZED_HORZ|SAL_FRAMESTATE_MAXIMIZED_VERT) ) ) + if( ! (pState->mnState & (SAL_FRAMESTATE_MAXIMIZED_HORZ|SAL_FRAMESTATE_MAXIMIZED_VERT) ) ) Maximize(); else { |