diff options
author | Mathias Bauer <mba@openoffice.org> | 2002-04-30 07:14:13 +0000 |
---|---|---|
committer | Mathias Bauer <mba@openoffice.org> | 2002-04-30 07:14:13 +0000 |
commit | 2791587b48b3b4d07049186b74f758b9c33517a2 (patch) | |
tree | be25442241e5503c335dc1e28ca9e7643cdcb1f5 /sfx2/source/appl/workwin.cxx | |
parent | 87ef29a127cb1d7d70a7670cc554f0dc2aa4ed94 (diff) |
#98831#: optimized docking handlers
Diffstat (limited to 'sfx2/source/appl/workwin.cxx')
-rw-r--r-- | sfx2/source/appl/workwin.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sfx2/source/appl/workwin.cxx b/sfx2/source/appl/workwin.cxx index f53e634d20a0..cc37ad429eb4 100644 --- a/sfx2/source/appl/workwin.cxx +++ b/sfx2/source/appl/workwin.cxx @@ -2,9 +2,9 @@ * * $RCSfile: workwin.cxx,v $ * - * $Revision: 1.30 $ + * $Revision: 1.31 $ * - * last change: $Author: mba $ $Date: 2002-04-24 16:42:13 $ + * last change: $Author: mba $ $Date: 2002-04-30 08:11:24 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1874,7 +1874,7 @@ void SfxWorkWindow::ConfigChild_Impl(SfxChildIdentifier eChild, { case SFX_ALIGN_TOP: // Objekt-Toolboxen kommen immer zuletzt - if ( bTbx || n <= nPos) + //if ( bTbx || n <= nPos) aInnerRect.Top() += pCli->aSize.Height(); break; @@ -1897,7 +1897,7 @@ void SfxWorkWindow::ConfigChild_Impl(SfxChildIdentifier eChild, case SFX_ALIGN_BOTTOM: // Objekt-Toolboxen kommen immer zuletzt - if ( bTbx || n <= nPos) + //if ( bTbx || n <= nPos) aInnerRect.Bottom() -= pCli->aSize.Height(); break; @@ -1920,7 +1920,7 @@ void SfxWorkWindow::ConfigChild_Impl(SfxChildIdentifier eChild, case SFX_ALIGN_LEFT: // Toolboxen kommen immer zuletzt - if (bTbx || n <= nPos) + //if (bTbx || n <= nPos) aInnerRect.Left() += pCli->aSize.Width(); break; @@ -1942,7 +1942,7 @@ void SfxWorkWindow::ConfigChild_Impl(SfxChildIdentifier eChild, case SFX_ALIGN_RIGHT: // Toolboxen kommen immer zuletzt - if (bTbx || n <= nPos) + //if (bTbx || n <= nPos) aInnerRect.Right() -= pCli->aSize.Width(); break; |