summaryrefslogtreecommitdiff
path: root/sc/source/ui/Accessibility/AccessiblePageHeader.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/Accessibility/AccessiblePageHeader.cxx')
-rw-r--r--sc/source/ui/Accessibility/AccessiblePageHeader.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/Accessibility/AccessiblePageHeader.cxx b/sc/source/ui/Accessibility/AccessiblePageHeader.cxx
index 4eafb7a46005..5749093d83e3 100644
--- a/sc/source/ui/Accessibility/AccessiblePageHeader.cxx
+++ b/sc/source/ui/Accessibility/AccessiblePageHeader.cxx
@@ -350,7 +350,7 @@ Rectangle ScAccessiblePageHeader::GetBoundingBoxOnScreen() const throw (uno::Run
Rectangle aCellRect(GetBoundingBox());
if (mpViewShell)
{
- Window* pWindow = mpViewShell->GetWindow();
+ vcl::Window* pWindow = mpViewShell->GetWindow();
if (pWindow)
{
Rectangle aRect = pWindow->GetWindowExtentsRelative(NULL);
@@ -374,7 +374,7 @@ Rectangle ScAccessiblePageHeader::GetBoundingBox() const throw (uno::RuntimeExce
// the Rectangle could contain negative coordinates so it should be cliped
Rectangle aClipRect(Point(0, 0), aRect.GetSize());
- Window* pWindow = mpViewShell->GetWindow();
+ vcl::Window* pWindow = mpViewShell->GetWindow();
if (pWindow)
aClipRect = pWindow->GetWindowExtentsRelative(pWindow->GetAccessibleParentWindow());
aRect = aClipRect.GetIntersection(aRect);