135360
From c454caba0eae7818a243f1aebca85d665cf981c9 Mon Sep 17 00:00:00 2001
135360
From: Julien Nabet <serval2412@yahoo.fr>
135360
Date: Sun, 14 Jun 2015 09:09:52 +0200
135360
Subject: [PATCH 043/398] cppcheck: postfixOperator
135360
135360
Change-Id: Ia17bdf6e8f871d64add358822ea383236ecd6405
135360
(cherry picked from commit 01a189abcd9a4ca472a74b3b2c000c9338fc2c91)
135360
---
135360
 libreofficekit/source/gtk/tilebuffer.cxx | 2 +-
135360
 1 file changed, 1 insertion(+), 1 deletion(-)
135360
135360
diff --git a/libreofficekit/source/gtk/tilebuffer.cxx b/libreofficekit/source/gtk/tilebuffer.cxx
135360
index 2c0ee90e08d4..3f22f983d2ab 100644
135360
--- a/libreofficekit/source/gtk/tilebuffer.cxx
135360
+++ b/libreofficekit/source/gtk/tilebuffer.cxx
135360
@@ -54,7 +54,7 @@ void Tile::setPixbuf(GdkPixbuf *buffer)
135360
 void TileBuffer::resetAllTiles()
135360
 {
135360
     std::map<int, Tile>::iterator it = m_mTiles.begin();
135360
-    for (; it != m_mTiles.end(); it++)
135360
+    for (; it != m_mTiles.end(); ++it)
135360
     {
135360
         it->second.release();
135360
     }
135360
-- 
135360
2.12.0
135360