libreofficekit/source/gtk/tilebuffer.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 01a189abcd9a4ca472a74b3b2c000c9338fc2c91 Author: Julien Nabet <[email protected]> Date: Sun Jun 14 09:09:52 2015 +0200 cppcheck: postfixOperator Change-Id: Ia17bdf6e8f871d64add358822ea383236ecd6405 diff --git a/libreofficekit/source/gtk/tilebuffer.cxx b/libreofficekit/source/gtk/tilebuffer.cxx index 2c0ee90..3f22f98 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(); } _______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
