Index: /trunk/src/VBox/Frontends/VirtualBox/src/selector/graphics/chooser/UIGChooserModel.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/selector/graphics/chooser/UIGChooserModel.cpp	(revision 70551)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/selector/graphics/chooser/UIGChooserModel.cpp	(revision 70552)
@@ -351,10 +351,8 @@
 }
 
-UIGChooserItem* UIGChooserModel::findClosestUnselectedItem() const
-{
-    /*
-     * Take the focus item (if any) as a starting point and find
-     * the closest non-selected item.
-     */
+UIGChooserItem *UIGChooserModel::findClosestUnselectedItem() const
+{
+    /* Take the focus item (if any) as a starting point
+     * and find the closest non-selected item. */
     UIGChooserItem *pItem = focusItem();
     if (!pItem)
@@ -371,5 +369,5 @@
                 if (!currentItems().contains(pItem))
                     return pItem;
-                idxBefore--;
+                --idxBefore;
             }
             if (idxAfter < navigationList().size())
@@ -378,5 +376,5 @@
                 if (!currentItems().contains(pItem))
                     return pItem;
-                idxAfter++;
+                ++idxAfter;
             }
         }
Index: /trunk/src/VBox/Frontends/VirtualBox/src/selector/graphics/chooser/UIGChooserModel.h
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/selector/graphics/chooser/UIGChooserModel.h	(revision 70551)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/selector/graphics/chooser/UIGChooserModel.h	(revision 70552)
@@ -120,5 +120,5 @@
     void addToCurrentItems(UIGChooserItem *pItem);
     void removeFromCurrentItems(UIGChooserItem *pItem);
-    UIGChooserItem* findClosestUnselectedItem() const;
+    UIGChooserItem *findClosestUnselectedItem() const;
     void makeSureSomeItemIsSelected();
     void notifyCurrentItemChanged();
