summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2023-10-18 12:28:12 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2023-10-18 20:08:21 +0200
commitbaa67b2d7037bc5e289a144a81014f1fb42e68ed (patch)
treed0334d4a2257c6680662fdc4064289fdea8720d7 /include
parentca58f649196ed6b4ce15d0db3935f7de4cb0f2ea (diff)
use more SdrObjList::begin/end in svx
Change-Id: I362a2e12492391338b63708e4b329fc77ac363c4 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158113 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r--include/svx/svdpage.hxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/svx/svdpage.hxx b/include/svx/svdpage.hxx
index 7ab37532c046..b197e4d2eb77 100644
--- a/include/svx/svdpage.hxx
+++ b/include/svx/svdpage.hxx
@@ -229,6 +229,8 @@ public:
SdrObjectDeque::const_iterator begin() const { return maList.begin(); }
SdrObjectDeque::const_iterator end() const { return maList.end(); }
+ SdrObjectDeque::const_reverse_iterator rbegin() const { return maList.rbegin(); }
+ SdrObjectDeque::const_reverse_iterator rend() const { return maList.rend(); }
private:
tools::Rectangle maSdrObjListOutRect;