summaryrefslogtreecommitdiff
path: root/sd/source/ui/view/clview.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/view/clview.cxx')
-rw-r--r--sd/source/ui/view/clview.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/ui/view/clview.cxx b/sd/source/ui/view/clview.cxx
index f8900caba5eb..312f1697764d 100644
--- a/sd/source/ui/view/clview.cxx
+++ b/sd/source/ui/view/clview.cxx
@@ -52,7 +52,7 @@ ClientView::~ClientView()
void ClientView::InvalidateOneWin(vcl::Window& rWin)
{
- Region aRegion;
+ vcl::Region aRegion;
CompleteRedraw(&rWin, aRegion);
}
@@ -63,10 +63,10 @@ void ClientView::InvalidateOneWin(vcl::Window& rWin)
void ClientView::InvalidateOneWin(vcl::Window& rWin, const Rectangle& rRect)
{
- CompleteRedraw(&rWin, Region(rRect));
+ CompleteRedraw(&rWin, vcl::Region(rRect));
}
-void ClientView::CompleteRedraw(OutputDevice* pOutDev, const Region& rReg, sdr::contact::ViewObjectContactRedirector* pRedirector )
+void ClientView::CompleteRedraw(OutputDevice* pOutDev, const vcl::Region& rReg, sdr::contact::ViewObjectContactRedirector* pRedirector )
{
DrawView::CompleteRedraw(pOutDev, rReg, pRedirector);
}