summaryrefslogtreecommitdiff
path: root/sw/source/uibase/uno/unotxdoc.cxx
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2017-01-29 09:54:35 +0100
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-01-29 09:46:36 +0000
commit018ed00d5b40d25c6f8f40485a41026247fdc91e (patch)
tree71f41c4f8e532519aee3d897b72f965fbb705c85 /sw/source/uibase/uno/unotxdoc.cxx
parente073bb9c3ea2f7d03a7cf0759efc70edf84fc033 (diff)
cppcheck: postfix operator
Change-Id: I2b6f0c922b0e70ecbf79f60831ff5d71cd1438fb Reviewed-on: https://gerrit.libreoffice.org/33656 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw/source/uibase/uno/unotxdoc.cxx')
-rw-r--r--sw/source/uibase/uno/unotxdoc.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/uibase/uno/unotxdoc.cxx b/sw/source/uibase/uno/unotxdoc.cxx
index 133fc69c9f6b..bbe2077bc474 100644
--- a/sw/source/uibase/uno/unotxdoc.cxx
+++ b/sw/source/uibase/uno/unotxdoc.cxx
@@ -3189,7 +3189,7 @@ OUString SwXTextDocument::getPostIts()
SolarMutexGuard aGuard;
boost::property_tree::ptree aAnnotations;
for (std::list<SwSidebarItem*>::const_iterator i = pDocShell->GetView()->GetPostItMgr()->begin();
- i != pDocShell->GetView()->GetPostItMgr()->end(); i++ )
+ i != pDocShell->GetView()->GetPostItMgr()->end(); ++i )
{
sw::annotation::SwAnnotationWin* pWin = static_cast<sw::annotation::SwAnnotationWin*>((*i)->pPostIt.get());