diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2015-06-14 09:09:52 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2015-06-14 09:09:52 +0200 |
commit | 01a189abcd9a4ca472a74b3b2c000c9338fc2c91 (patch) | |
tree | 56cf99e50b90a90167efa2f1c02eee7414c1fa6f /libreofficekit/source | |
parent | ad84b40b084cb6c6c129c687303fb863b8b3f746 (diff) |
cppcheck: postfixOperator
Change-Id: Ia17bdf6e8f871d64add358822ea383236ecd6405
Diffstat (limited to 'libreofficekit/source')
-rw-r--r-- | libreofficekit/source/gtk/tilebuffer.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libreofficekit/source/gtk/tilebuffer.cxx b/libreofficekit/source/gtk/tilebuffer.cxx index 2c0ee90e08d4..3f22f983d2ab 100644 --- a/libreofficekit/source/gtk/tilebuffer.cxx +++ b/libreofficekit/source/gtk/tilebuffer.cxx @@ -54,7 +54,7 @@ void Tile::setPixbuf(GdkPixbuf *buffer) void TileBuffer::resetAllTiles() { std::map<int, Tile>::iterator it = m_mTiles.begin(); - for (; it != m_mTiles.end(); it++) + for (; it != m_mTiles.end(); ++it) { it->second.release(); } |