summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorKayo Hamid <kayo.hamid@gekkolinux.com.br>2011-04-19 10:29:42 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-04-19 10:29:42 +0100
commit26c8682631d81151d1d81922a5aafde98081bfb6 (patch)
treeea6b89514e206f7016f97215f66f6a6834a2fa83 /svtools
parent8af99e57686fb9ea4da1fcf890c7a7ce9e50c83f (diff)
prefer prefix ++/-- operators
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/control/ctrlbox.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svtools/source/control/ctrlbox.cxx b/svtools/source/control/ctrlbox.cxx
index a094ed4f3ff3..6939880c0d3d 100644
--- a/svtools/source/control/ctrlbox.cxx
+++ b/svtools/source/control/ctrlbox.cxx
@@ -394,7 +394,7 @@ long BorderWidthImpl::GuessWidth( long nLine1, long nLine2, long nGap )
while ( pIt != aToCompare.end() && !bInvalid )
{
bInvalid = ( nWidth != *pIt );
- pIt++;
+ ++pIt;
}
if ( bInvalid )
nWidth = 0.0;