summaryrefslogtreecommitdiff
path: root/plugins
diff options
authorMC Return <mc.return@gmx.net>2012-07-30 18:41:54 +0200
committerMC Return <mc.return@gmx.net>2012-07-30 18:41:54 +0200
commitc41d793d9a71b79a972a3bcd88c47cd6590e5258 (patch)
tree1f9e9c56e9948a9d10d65aae917f3d4b68145131 /plugins
parent9c6d5f66abff91e9dcd1869495368c47faac68c7 (diff)
Fixed possible performance issue in unity-launcher-accessible.cpp by replacement of postfix ++ operator with prefix one
(bzr r2528.1.10)
Diffstat (limited to 'plugins')
-rw-r--r--plugins/unityshell/src/unity-launcher-accessible.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/unityshell/src/unity-launcher-accessible.cpp b/plugins/unityshell/src/unity-launcher-accessible.cpp
index d20deed28..4cb4301ae 100644
--- a/plugins/unityshell/src/unity-launcher-accessible.cpp
+++ b/plugins/unityshell/src/unity-launcher-accessible.cpp
@@ -441,7 +441,7 @@ update_children_index(UnityLauncherAccessible* self)
if (launcher_model == NULL)
return;
- for (it = launcher_model->begin(); it != launcher_model->end(); it++)
+ for (it = launcher_model->begin(); it != launcher_model->end(); ++it)
{
child = dynamic_cast<nux::Object*>((*it).GetPointer());
child_accessible = unity_a11y_get_accessible(child);