summaryrefslogtreecommitdiff
path: root/lotuswordpro
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2010-12-23 16:35:13 +0000
committerCaolán McNamara <caolanm@redhat.com>2010-12-23 16:35:13 +0000
commitcfb51ec23f7d5fc0182f44d851201404aa568f6f (patch)
tree729adf59107d81351015bec6bcc54ae8294624c5 /lotuswordpro
parentdbba22e933c70211ee8a479b7800cf57800555c1 (diff)
cppcheck: prefer prefix variant
Diffstat (limited to 'lotuswordpro')
-rw-r--r--lotuswordpro/source/filter/xfilter/xfdrawpath.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/lotuswordpro/source/filter/xfilter/xfdrawpath.cxx b/lotuswordpro/source/filter/xfilter/xfdrawpath.cxx
index 01ce62a0540c..b96f45dd2075 100644
--- a/lotuswordpro/source/filter/xfilter/xfdrawpath.cxx
+++ b/lotuswordpro/source/filter/xfilter/xfdrawpath.cxx
@@ -78,7 +78,7 @@ rtl::OUString XFSvgPathEntry::ToString()
rtl::OUString str = m_strCommand;
std::vector<XFPoint>::iterator it;
- for( it = m_aPoints.begin(); it != m_aPoints.end(); it++ )
+ for( it = m_aPoints.begin(); it != m_aPoints.end(); ++it )
{
XFPoint aPt= *it;
str += DoubleToOUString(aPt.GetX()*1000) + A2OUSTR(" ") + DoubleToOUString(aPt.GetY()*1000) + A2OUSTR(" ");
@@ -171,7 +171,7 @@ void XFDrawPath::ToXml(IXFStream *pStrm)
//points
rtl::OUString strPath;
std::vector<XFSvgPathEntry>::iterator it;
- for( it = m_aPaths.begin(); it != m_aPaths.end(); it++ )
+ for( it = m_aPaths.begin(); it != m_aPaths.end(); ++it )
{
XFSvgPathEntry aSvg = *it;
strPath += aSvg.ToString();
@@ -203,7 +203,7 @@ XFRect XFDrawPath::CalcViewBox()
aPath = *itPath;
points = aPath.m_aPoints;
- for( itPoint = points.begin(); itPoint != points.end(); itPoint++ )
+ for( itPoint = points.begin(); itPoint != points.end(); ++itPoint )
{
aPoint = *itPoint;
if( x1>aPoint.GetX() )
@@ -216,7 +216,7 @@ XFRect XFDrawPath::CalcViewBox()
if( y2<aPoint.GetY() )
y2 = aPoint.GetY();
}
- itPath++;
+ ++itPath;
}while(itPath!=m_aPaths.end());
return XFRect(x1,y1,x2-x1,y2-y1);