diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2012-10-13 10:19:43 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2012-10-13 16:08:08 +0200 |
commit | 64ab96cd15e52da88781e720d6f031dbcd0ba902 (patch) | |
tree | 35afbecca67a6c30ef01bee1861035b60d4bbb27 /cui/source/tabpages/autocdlg.cxx | |
parent | 5f12d6d42defc5ad3c286c23771be75595388d54 (diff) |
Prefer prefix ++/-- operators for non-primitive types
Change-Id: I057c3ea14cd1f224b339f884ae86890d16471215
Diffstat (limited to 'cui/source/tabpages/autocdlg.cxx')
-rw-r--r-- | cui/source/tabpages/autocdlg.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cui/source/tabpages/autocdlg.cxx b/cui/source/tabpages/autocdlg.cxx index 1c6e725ea500..a34bd712786a 100644 --- a/cui/source/tabpages/autocdlg.cxx +++ b/cui/source/tabpages/autocdlg.cxx @@ -936,7 +936,7 @@ sal_Bool OfaAutocorrReplacePage::FillItemSet( SfxItemSet& ) { SvxAutoCorrect* pAutoCorrect = SvxAutoCorrCfg::Get().GetAutoCorrect(); - for (StringChangeTable::reverse_iterator it = aChangesTable.rbegin(); it != aChangesTable.rend(); it++) + for (StringChangeTable::reverse_iterator it = aChangesTable.rbegin(); it != aChangesTable.rend(); ++it) { LanguageType eCurrentLang = it->first; StringChangeList& rStringChangeList = it->second; |