summaryrefslogtreecommitdiff
path: root/svtools/source/control/ruler.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svtools/source/control/ruler.cxx')
-rw-r--r--svtools/source/control/ruler.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/control/ruler.cxx b/svtools/source/control/ruler.cxx
index 8e39fe9beb8b..0263deacac31 100644
--- a/svtools/source/control/ruler.cxx
+++ b/svtools/source/control/ruler.cxx
@@ -2568,7 +2568,7 @@ void Ruler::SetBorders( sal_uInt32 aBorderArraySize, const RulerBorder* pBorderA
else
{
sal_uInt32 i = aBorderArraySize;
- const RulerBorder* pAry1 = &mpData->pBorders[0];
+ const RulerBorder* pAry1 = mpData->pBorders.data();
const RulerBorder* pAry2 = pBorderArray;
while ( i )
{
@@ -2609,7 +2609,7 @@ void Ruler::SetIndents( sal_uInt32 aIndentArraySize, const RulerIndent* pIndentA
else
{
sal_uInt32 i = aIndentArraySize;
- const RulerIndent* pAry1 = &mpData->pIndents[0];
+ const RulerIndent* pAry1 = mpData->pIndents.data();
const RulerIndent* pAry2 = pIndentArray;
while ( i )
{