Index: /trunk/src/VBox/Main/include/Performance.h
===================================================================
--- /trunk/src/VBox/Main/include/Performance.h	(revision 55768)
+++ /trunk/src/VBox/Main/include/Performance.h	(revision 55769)
@@ -125,5 +125,5 @@
             processes.clear();
             processes.reserve(mProcesses.size());
-            for (ProcessList::const_iterator it = mProcesses.begin(); it != mProcesses.end(); it++)
+            for (ProcessList::const_iterator it = mProcesses.begin(); it != mProcesses.end(); ++it)
                 processes.push_back(it->first);
         }
@@ -139,5 +139,5 @@
         {
             ProcessList::iterator it;
-            for (it = mProcesses.begin(); it != mProcesses.end(); it++)
+            for (it = mProcesses.begin(); it != mProcesses.end(); ++it)
                 if (it->first == process)
                     return *it;
Index: /trunk/src/VBox/Main/src-all/ExtPackManagerImpl.cpp
===================================================================
--- /trunk/src/VBox/Main/src-all/ExtPackManagerImpl.cpp	(revision 55768)
+++ /trunk/src/VBox/Main/src-all/ExtPackManagerImpl.cpp	(revision 55769)
@@ -2354,5 +2354,5 @@
     for (ExtPackList::iterator it = m->llInstalledExtPacks.begin();
          it != m->llInstalledExtPacks.end();
-         it++)
+         ++it)
     {
         ExtPack::Data *pExtPackData = (*it)->m;
@@ -2378,5 +2378,5 @@
     for (ExtPackList::iterator it = m->llInstalledExtPacks.begin();
          it != m->llInstalledExtPacks.end();
-         it++)
+         ++it)
     {
         ExtPack::Data *pExtPackData = (*it)->m;
@@ -2790,5 +2790,5 @@
             it = m->llInstalledExtPacks.begin();
         else
-            it++;
+            ++it;
     }
 }
@@ -2817,5 +2817,5 @@
             it = m->llInstalledExtPacks.begin();
         else
-            it++;
+            ++it;
     }
 }
@@ -2837,5 +2837,5 @@
     ExtPackList             llExtPacks = m->llInstalledExtPacks;
 
-    for (ExtPackList::iterator it = llExtPacks.begin(); it != llExtPacks.end(); it++)
+    for (ExtPackList::iterator it = llExtPacks.begin(); it != llExtPacks.end(); ++it)
         (*it)->i_callVmCreatedHook(m->pVirtualBox, a_pMachine, &autoLock);
 }
@@ -2860,5 +2860,5 @@
     ExtPackList             llExtPacks = m->llInstalledExtPacks;
 
-    for (ExtPackList::iterator it = llExtPacks.begin(); it != llExtPacks.end(); it++)
+    for (ExtPackList::iterator it = llExtPacks.begin(); it != llExtPacks.end(); ++it)
     {
         int vrc;
@@ -2889,5 +2889,5 @@
     ExtPackList             llExtPacks = m->llInstalledExtPacks;
 
-    for (ExtPackList::iterator it = llExtPacks.begin(); it != llExtPacks.end(); it++)
+    for (ExtPackList::iterator it = llExtPacks.begin(); it != llExtPacks.end(); ++it)
     {
         int vrc;
@@ -2916,5 +2916,5 @@
     ExtPackList             llExtPacks = m->llInstalledExtPacks;
 
-    for (ExtPackList::iterator it = llExtPacks.begin(); it != llExtPacks.end(); it++)
+    for (ExtPackList::iterator it = llExtPacks.begin(); it != llExtPacks.end(); ++it)
         (*it)->i_callVmPowerOffHook(a_pConsole, a_pVM, &autoLock);
 }
@@ -3024,5 +3024,5 @@
         for (ExtPackList::iterator it = m->llInstalledExtPacks.begin();
              it != m->llInstalledExtPacks.end();
-             it++)
+             ++it)
         {
             if ((*it)->i_wantsToBeDefaultVrde())
@@ -3069,5 +3069,5 @@
     for (ExtPackList::iterator it = m->llInstalledExtPacks.begin();
          it != m->llInstalledExtPacks.end();
-         it++)
+         ++it)
     {
         ExtPack::Data *pExtPackData = (*it)->m;
Index: /trunk/src/VBox/Main/src-all/SecretKeyStore.cpp
===================================================================
--- /trunk/src/VBox/Main/src-all/SecretKeyStore.cpp	(revision 55768)
+++ /trunk/src/VBox/Main/src-all/SecretKeyStore.cpp	(revision 55769)
@@ -198,5 +198,5 @@
         for (SecretKeyMap::iterator it = m_mapSecretKeys.begin();
              it != m_mapSecretKeys.end();
-             it++)
+             ++it)
         {
             SecretKey *pKey = it->second;
@@ -221,8 +221,8 @@
         }
         else
-            it++;
-    }
-
-    return VINF_SUCCESS;
-}
-
+            ++it;
+    }
+
+    return VINF_SUCCESS;
+}
+
Index: /trunk/src/VBox/Main/src-client/ConsoleImpl.cpp
===================================================================
--- /trunk/src/VBox/Main/src-client/ConsoleImpl.cpp	(revision 55768)
+++ /trunk/src/VBox/Main/src-client/ConsoleImpl.cpp	(revision 55769)
@@ -3945,5 +3945,5 @@
         /* Find the correct USB device in the list. */
         USBStorageDeviceList::iterator it;
-        for (it = pThis->mUSBStorageDevices.begin(); it != pThis->mUSBStorageDevices.end(); it++)
+        for (it = pThis->mUSBStorageDevices.begin(); it != pThis->mUSBStorageDevices.end(); ++it)
         {
             if (it->iPort == lPort)
Index: /trunk/src/VBox/Main/src-client/GuestCtrlPrivate.cpp
===================================================================
--- /trunk/src/VBox/Main/src-client/GuestCtrlPrivate.cpp	(revision 55768)
+++ /trunk/src/VBox/Main/src-client/GuestCtrlPrivate.cpp	(revision 55769)
@@ -158,5 +158,5 @@
 {
     for (GuestCtrlStreamPairsIter it = otherBlock.mPairs.begin();
-         it != otherBlock.end(); it++)
+         it != otherBlock.end(); ++it)
     {
         mPairs[it->first] = new
@@ -191,5 +191,5 @@
 
     for (GuestCtrlStreamPairMapIterConst it = mPairs.begin();
-         it != mPairs.end(); it++)
+         it != mPairs.end(); ++it)
     {
         LogFlowFunc(("\t%s=%s\n", it->first.c_str(), it->second.mValue.c_str()));
Index: /trunk/src/VBox/Main/src-client/GuestSessionImpl.cpp
===================================================================
--- /trunk/src/VBox/Main/src-client/GuestSessionImpl.cpp	(revision 55768)
+++ /trunk/src/VBox/Main/src-client/GuestSessionImpl.cpp	(revision 55769)
@@ -1877,5 +1877,5 @@
         {
             LogFlow((" %s", (*it).c_str()));
-            it++;
+            ++it;
         }
         LogFlow(("\n"));
Index: /trunk/src/VBox/Main/src-server/MachineImpl.cpp
===================================================================
--- /trunk/src/VBox/Main/src-server/MachineImpl.cpp	(revision 55768)
+++ /trunk/src/VBox/Main/src-server/MachineImpl.cpp	(revision 55769)
@@ -5872,5 +5872,5 @@
            )
             propMap.insert(*it);
-        it++;
+        ++it;
     }
 
Index: /trunk/src/VBox/Main/src-server/MediumLock.cpp
===================================================================
--- /trunk/src/VBox/Main/src-server/MediumLock.cpp	(revision 55768)
+++ /trunk/src/VBox/Main/src-server/MediumLock.cpp	(revision 55769)
@@ -185,5 +185,5 @@
     for (MediumLockList::Base::iterator it = mMediumLocks.begin();
          it != mMediumLocks.end();
-         it++)
+         ++it)
     {
         if (it->GetMedium() == aMedium)
@@ -224,5 +224,5 @@
     for (MediumLockList::Base::iterator it = mMediumLocks.begin();
          it != mMediumLocks.end();
-         it++)
+         ++it)
     {
         rc = it->Lock(fSkipOverLockedMedia);
@@ -251,5 +251,5 @@
     for (MediumLockList::Base::iterator it = mMediumLocks.begin();
          it != mMediumLocks.end();
-         it++)
+         ++it)
     {
         HRESULT rc2 = it->Unlock();
@@ -345,5 +345,5 @@
     for (MediumLockListMap::Base::const_iterator it = mMediumLocks.begin();
          it != mMediumLocks.end();
-         it++)
+         ++it)
     {
         rc = it->second->Lock();
@@ -372,5 +372,5 @@
     for (MediumLockListMap::Base::const_iterator it = mMediumLocks.begin();
          it != mMediumLocks.end();
-         it++)
+         ++it)
     {
         MediumLockList *pMediumLockList = it->second;
Index: /trunk/src/VBox/Main/src-server/Performance.cpp
===================================================================
--- /trunk/src/VBox/Main/src-server/Performance.cpp	(revision 55768)
+++ /trunk/src/VBox/Main/src-server/Performance.cpp	(revision 55769)
@@ -459,5 +459,5 @@
         mVMMStatsProvider = NULL;
 
-        for (it = mGuests.begin(); it != mGuests.end(); it++)
+        for (it = mGuests.begin(); it != mGuests.end(); ++it)
         {
             /* Skip unregistered as they are about to be destroyed */
@@ -482,5 +482,5 @@
         {
             /* If nobody collects stats, take the first registered */
-            for (it = mGuests.begin(); it != mGuests.end(); it++)
+            for (it = mGuests.begin(); it != mGuests.end(); ++it)
             {
                 /* Skip unregistered as they are about to be destroyed */
@@ -1533,5 +1533,5 @@
 
     //LogAleksey(("Filter::match(%p, %s)\n", static_cast<const IUnknown*> (object), name.c_str()));
-    for (it = mElements.begin(); it != mElements.end(); it++)
+    for (it = mElements.begin(); it != mElements.end(); ++it)
     {
         //LogAleksey(("...matching against(%p, %s)\n", static_cast<const IUnknown*> ((*it).first), (*it).second.c_str()));
Index: /trunk/src/VBox/Main/src-server/PerformanceImpl.cpp
===================================================================
--- /trunk/src/VBox/Main/src-server/PerformanceImpl.cpp	(revision 55768)
+++ /trunk/src/VBox/Main/src-server/PerformanceImpl.cpp	(revision 55769)
@@ -729,5 +729,5 @@
     BaseMetricList::iterator it;
     /* Compose the list of metrics being collected at this moment */
-    for (it = m.baseMetrics.begin(); it != m.baseMetrics.end(); it++)
+    for (it = m.baseMetrics.begin(); it != m.baseMetrics.end(); ++it)
         if ((*it)->collectorBeat(timestamp))
         {
Index: /trunk/src/VBox/Main/src-server/USBProxyService.cpp
===================================================================
--- /trunk/src/VBox/Main/src-server/USBProxyService.cpp	(revision 55768)
+++ /trunk/src/VBox/Main/src-server/USBProxyService.cpp	(revision 55769)
@@ -929,5 +929,5 @@
                               pIgnoreMachine);
             alock.acquire();
-            it++;
+            ++it;
         }
         else
@@ -969,5 +969,5 @@
                  */
                 if (!pHostDevice->i_wasActuallyDetached())
-                    it++;
+                    ++it;
                 else
                 {
Index: /trunk/src/VBox/Main/src-server/linux/PerformanceLinux.cpp
===================================================================
--- /trunk/src/VBox/Main/src-server/linux/PerformanceLinux.cpp	(revision 55768)
+++ /trunk/src/VBox/Main/src-server/linux/PerformanceLinux.cpp	(revision 55769)
@@ -118,5 +118,5 @@
 
     std::vector<RTPROCESS>::iterator it;
-    for (it = processes.begin(); it != processes.end(); it++)
+    for (it = processes.begin(); it != processes.end(); ++it)
     {
         VMProcessStats vmStats;
Index: /trunk/src/VBox/Main/src-server/win/PerformanceWin.cpp
===================================================================
--- /trunk/src/VBox/Main/src-server/win/PerformanceWin.cpp	(revision 55768)
+++ /trunk/src/VBox/Main/src-server/win/PerformanceWin.cpp	(revision 55769)
@@ -140,5 +140,5 @@
     mProcessStats.clear();
 
-    for (it = processes.begin(); it != processes.end() && RT_SUCCESS(rc); it++)
+    for (it = processes.begin(); it != processes.end() && RT_SUCCESS(rc); ++it)
     {
         RTPROCESS process = it->first;
