diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2008-07-02 09:14:54 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2008-07-02 09:14:54 +0000 |
commit | 61f02ddf1a35bb0673e1beaacae8ec0f503826db (patch) | |
tree | 2eb275003a65ff730ec62286e3ec4be0304eceb3 | |
parent | 13b73c917b1c8f52cde10d143e9b45225ccc3ffd (diff) |
INTEGRATION: CWS vcl90 (1.70.54); FILE MERGED
2008/06/06 14:58:56 pl 1.70.54.1: #i61446# workaround icewms halfhearted EWMH support
-rw-r--r-- | vcl/unx/source/app/wmadaptor.cxx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/vcl/unx/source/app/wmadaptor.cxx b/vcl/unx/source/app/wmadaptor.cxx index 5495b387c844..6c1ae35b7e3d 100644 --- a/vcl/unx/source/app/wmadaptor.cxx +++ b/vcl/unx/source/app/wmadaptor.cxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: wmadaptor.cxx,v $ - * $Revision: 1.70 $ + * $Revision: 1.71 $ * * This file is part of OpenOffice.org. * @@ -2037,6 +2037,10 @@ int GnomeWMAdaptor::handlePropertyNotify( X11SalFrame* pFrame, XPropertyEvent* p Size( rGeom.nWidth, rGeom.nHeight ) ); } } + else if( pEvent->atom == m_aWMAtoms[ NET_WM_DESKTOP ] ) + { + pFrame->m_nWorkArea = getWindowWorkArea( pFrame->GetShellWindow() ); + } else nHandled = 0; |