summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2011-08-30 23:11:44 +0200
committerJulien Nabet <serval2412@yahoo.fr>2011-08-30 23:13:04 +0200
commit01a87c102fe6bdaf3aa48a0ba17219e6e0983c4c (patch)
tree8eceb26b832e308924bdbea210e50c3eb61f9d59 /svx
parent8bf60230255e0e8da66cafff578f148858cee4ca (diff)
Some cppcheck cleaning
Diffstat (limited to 'svx')
-rw-r--r--svx/source/svdraw/svdpage.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/svdraw/svdpage.cxx b/svx/source/svdraw/svdpage.cxx
index 70deda899fdf..dbd8a39f3031 100644
--- a/svx/source/svdraw/svdpage.cxx
+++ b/svx/source/svdraw/svdpage.cxx
@@ -1351,7 +1351,7 @@ SdrPage::~SdrPage()
// of page users. Therefore we have to use a copy of the list for the
// iteration.
::sdr::PageUserVector aListCopy (maPageUsers.begin(), maPageUsers.end());
- for(::sdr::PageUserVector::iterator aIterator = aListCopy.begin(); aIterator != aListCopy.end(); aIterator++)
+ for(::sdr::PageUserVector::iterator aIterator = aListCopy.begin(); aIterator != aListCopy.end(); ++aIterator)
{
sdr::PageUser* pPageUser = *aIterator;
DBG_ASSERT(pPageUser, "SdrPage::~SdrPage: corrupt PageUser list (!)");