summaryrefslogtreecommitdiff
path: root/svx/source/svdraw/svdpntv.cxx
diff options
context:
space:
mode:
authorJoseph Powers <jpowers27@cox.net>2010-11-25 06:34:20 -0800
committerJoseph Powers <jpowers27@cox.net>2010-11-25 06:34:20 -0800
commitd974b6220d6bb4fbf93469a92e37e41240481b59 (patch)
treefeafdfc9cd5b255e53ba8d1e914208db140d5a22 /svx/source/svdraw/svdpntv.cxx
parentc4601fa9649d9756bc8f8cda34ba6129b70a0e4e (diff)
cppcheck: use ++i instead of i++
Diffstat (limited to 'svx/source/svdraw/svdpntv.cxx')
-rw-r--r--svx/source/svdraw/svdpntv.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/svdraw/svdpntv.cxx b/svx/source/svdraw/svdpntv.cxx
index f81b55b73133..07d728189f37 100644
--- a/svx/source/svdraw/svdpntv.cxx
+++ b/svx/source/svdraw/svdpntv.cxx
@@ -146,7 +146,7 @@ void ImplEncirclementOverlay::SetSecondPosition(const basegfx::B2DPoint& rNewPos
SdrPaintWindow* SdrPaintView::FindPaintWindow(const OutputDevice& rOut) const
{
- for(SdrPaintWindowVector::const_iterator a = maPaintWindows.begin(); a != maPaintWindows.end(); a++)
+ for(SdrPaintWindowVector::const_iterator a = maPaintWindows.begin(); a != maPaintWindows.end(); ++a)
{
if(&((*a)->GetOutputDevice()) == &rOut)
{