summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/lwpdrawobj.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-04-28 10:24:35 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-04-28 09:31:29 +0000
commit91adb929d747ef1434fb1732fdbf51283fda78e8 (patch)
tree928b7d95ab0cb21d8a887f1f6b47d6af261f0d12 /lotuswordpro/source/filter/lwpdrawobj.cxx
parent43b4903db3e925c652e25c34362490f8adc9c5ec (diff)
clang-tidy modernize-loop-convert in h-l/*
Change-Id: I843528327b25d18476f8959cabba16371213a48a Reviewed-on: https://gerrit.libreoffice.org/24460 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'lotuswordpro/source/filter/lwpdrawobj.cxx')
-rw-r--r--lotuswordpro/source/filter/lwpdrawobj.cxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/lotuswordpro/source/filter/lwpdrawobj.cxx b/lotuswordpro/source/filter/lwpdrawobj.cxx
index 82e1fc5f9842..cab4dd260125 100644
--- a/lotuswordpro/source/filter/lwpdrawobj.cxx
+++ b/lotuswordpro/source/filter/lwpdrawobj.cxx
@@ -835,10 +835,10 @@ void LwpDrawEllipse::Read()
{
ReadClosedObjStyle();
- for (sal_uInt8 nC = 0; nC < 13; nC++)
+ for (SdwPoint & nC : m_aVector)
{
- m_pStream->ReadInt16( m_aVector[nC].x );
- m_pStream->ReadInt16( m_aVector[nC].y );
+ m_pStream->ReadInt16( nC.x );
+ m_pStream->ReadInt16( nC.y );
}
}
@@ -914,10 +914,10 @@ void LwpDrawArc::Read()
m_pStream->ReadUChar( m_aArcRec.aPenColor.unused );
m_pStream->ReadUChar( m_aArcRec.nLineEnd );
- for (sal_uInt8 nC = 0; nC < 4; nC++)
+ for (SdwPoint & nC : m_aVector)
{
- m_pStream->ReadInt16( m_aVector[nC].x );
- m_pStream->ReadInt16( m_aVector[nC].y );
+ m_pStream->ReadInt16( nC.x );
+ m_pStream->ReadInt16( nC.y );
}
}
@@ -1194,10 +1194,10 @@ void LwpDrawTextArt::CreateFWPath(XFDrawPath* pPath)
void LwpDrawTextArt::Read()
{
- for (sal_uInt8 nC = 0; nC < 4; nC++)
+ for (SdwPoint & nC : m_aVector)
{
- m_pStream->ReadInt16( m_aVector[nC].x );
- m_pStream->ReadInt16( m_aVector[nC].y );
+ m_pStream->ReadInt16( nC.x );
+ m_pStream->ReadInt16( nC.y );
}
ReadClosedObjStyle();