diff options
author | jailletc36 <christophe.jaillet@wanadoo.fr> | 2012-11-09 14:28:58 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2012-11-09 14:55:20 +0000 |
commit | d34e2f8bf150210355d6717be7b2ad95c869af25 (patch) | |
tree | 1aa43cd08b407884b95de72dd79e0f5278d5d680 /xmloff | |
parent | 09189c3facdc87c16bff5fdd2b03c27981891229 (diff) |
s/aIter++/++aIter/
Change-Id: Id80013cbab8f1633db59d2d4492c7363224871bd
Signed-off-by: jailletc36 <christophe.jaillet@wanadoo.fr>
Reviewed-on: https://gerrit.libreoffice.org/1016
Reviewed-by: Eike Rathke <erack@redhat.com>
Tested-by: Eike Rathke <erack@redhat.com>
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/text/XMLRedlineExport.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/source/text/XMLRedlineExport.cxx b/xmloff/source/text/XMLRedlineExport.cxx index 917fb9581a71..11d6e2eb253d 100644 --- a/xmloff/source/text/XMLRedlineExport.cxx +++ b/xmloff/source/text/XMLRedlineExport.cxx @@ -107,7 +107,7 @@ XMLRedlineExport::~XMLRedlineExport() // delete changes lists for( ChangesMapType::iterator aIter = aChangeMap.begin(); aIter != aChangeMap.end(); - aIter++ ) + ++aIter ) { delete aIter->second; } |