summaryrefslogtreecommitdiff
path: root/sd/source/ui/view/zoomlist.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/view/zoomlist.cxx')
-rw-r--r--sd/source/ui/view/zoomlist.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/ui/view/zoomlist.cxx b/sd/source/ui/view/zoomlist.cxx
index d4428537e469..f2e30ea8e5a9 100644
--- a/sd/source/ui/view/zoomlist.cxx
+++ b/sd/source/ui/view/zoomlist.cxx
@@ -36,7 +36,7 @@ ZoomList::ZoomList(ViewShell* pViewShell)
{
}
-void ZoomList::InsertZoomRect(const Rectangle& rRect)
+void ZoomList::InsertZoomRect(const ::tools::Rectangle& rRect)
{
size_t nRectCount = maRectangles.size();
@@ -54,7 +54,7 @@ void ZoomList::InsertZoomRect(const Rectangle& rRect)
rBindings.Invalidate( SID_ZOOM_PREV );
}
-Rectangle ZoomList::GetNextZoomRect()
+::tools::Rectangle ZoomList::GetNextZoomRect()
{
mnCurPos++;
size_t nRectCount = maRectangles.size();
@@ -69,7 +69,7 @@ Rectangle ZoomList::GetNextZoomRect()
return maRectangles[mnCurPos];
}
-Rectangle ZoomList::GetPreviousZoomRect()
+::tools::Rectangle ZoomList::GetPreviousZoomRect()
{
if (mnCurPos > 0)
mnCurPos--;