diff options
author | Sascha Ballach <sab@openoffice.org> | 2002-03-14 14:28:22 +0000 |
---|---|---|
committer | Sascha Ballach <sab@openoffice.org> | 2002-03-14 14:28:22 +0000 |
commit | 1f1a2d79c8661908dd1ad23819f04bb91dca6837 (patch) | |
tree | 081f601ebbf9e3ed0f9ce7da92ac50d6d62d2960 | |
parent | 636664f312734d9ed164f40f3cc6492604b3b0be (diff) |
#95584#; don't create a Point, because it is a Point
-rw-r--r-- | sc/source/ui/Accessibility/AccessibleText.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/ui/Accessibility/AccessibleText.cxx b/sc/source/ui/Accessibility/AccessibleText.cxx index 449aafc72ad9..fc7ff9f1d976 100644 --- a/sc/source/ui/Accessibility/AccessibleText.cxx +++ b/sc/source/ui/Accessibility/AccessibleText.cxx @@ -2,9 +2,9 @@ * * $RCSfile: AccessibleText.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: thb $ $Date: 2002-03-07 15:37:28 $ + * last change: $Author: sab $ $Date: 2002-03-14 15:28:22 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -122,7 +122,7 @@ Rectangle ScViewForwarder::GetVisArea() const if (pWindow) aVisArea.SetSize(pWindow->GetSizePixel()); if(mpViewShell->GetViewData()) - aVisArea.SetPos(Point(mpViewShell->GetViewData()->GetPixPos(meSplitPos))); + aVisArea.SetPos(mpViewShell->GetViewData()->GetPixPos(meSplitPos)); } else DBG_ERROR("this ViewForwarder is not valid"); |