summaryrefslogtreecommitdiff
path: root/basegfx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-01-01 21:25:46 +0000
committerCaolán McNamara <caolanm@redhat.com>2011-01-01 21:25:46 +0000
commita18a5916e15e401176c523d059ce2832cbf8c6b8 (patch)
tree0c288830366c9d9959500e1a1ba5ea434a5cf95f /basegfx
parentded41367ba25e3c25a64948ba2f6138fc66b989b (diff)
cppcheck: prefer prefix variant
Diffstat (limited to 'basegfx')
-rw-r--r--basegfx/source/polygon/b2dtrapezoid.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/basegfx/source/polygon/b2dtrapezoid.cxx b/basegfx/source/polygon/b2dtrapezoid.cxx
index f095a6658119..a091f45f2752 100644
--- a/basegfx/source/polygon/b2dtrapezoid.cxx
+++ b/basegfx/source/polygon/b2dtrapezoid.cxx
@@ -224,7 +224,7 @@ namespace basegfx
// Loop while new entry is bigger, use operator<
while(aCurrent != maTrDeEdgeEntries.end() && (*aCurrent) < rNewEdge)
{
- aCurrent++;
+ ++aCurrent;
}
// Insert before first which is smaller or equal or at end