summaryrefslogtreecommitdiff
path: root/cui/source
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2012-10-13 10:19:43 +0200
committerJulien Nabet <serval2412@yahoo.fr>2012-10-13 16:08:08 +0200
commit64ab96cd15e52da88781e720d6f031dbcd0ba902 (patch)
tree35afbecca67a6c30ef01bee1861035b60d4bbb27 /cui/source
parent5f12d6d42defc5ad3c286c23771be75595388d54 (diff)
Prefer prefix ++/-- operators for non-primitive types
Change-Id: I057c3ea14cd1f224b339f884ae86890d16471215
Diffstat (limited to 'cui/source')
-rw-r--r--cui/source/tabpages/autocdlg.cxx2
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;