diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2014-04-20 22:54:18 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2014-04-20 22:54:56 +0200 |
commit | 80915b8f21f0745cd4de2c4bb72fba24a0ffebcd (patch) | |
tree | 4f94536b553fb66c340f7df89edcae30a19ab2db /sw/source/ui | |
parent | 664c175e33a04f36e8af8a4a5e885542d2e22f7a (diff) |
cppcheck: Prefer prefix ++/-- operators for non-primitive types
Change-Id: Ic24715d86b3f822babd236ac73c041f3a5c1d92b
Diffstat (limited to 'sw/source/ui')
-rw-r--r-- | sw/source/ui/index/cnttab.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/ui/index/cnttab.cxx b/sw/source/ui/index/cnttab.cxx index ff0857bab671..0e44b976f11c 100644 --- a/sw/source/ui/index/cnttab.cxx +++ b/sw/source/ui/index/cnttab.cxx @@ -2282,7 +2282,7 @@ IMPL_LINK(SwTOXEntryTabPage, LevelHdl, SvTreeListBox*, pBox) m_pAuthFieldsLB->RemoveEntry(nLstBoxPos); } - aIt++; // #i21237# + ++aIt; // #i21237# } m_pAuthFieldsLB->SelectEntryPos(0); } |