Index: /trunk/src/VBox/Main/src-server/AudioAdapterImpl.cpp
===================================================================
--- /trunk/src/VBox/Main/src-server/AudioAdapterImpl.cpp	(revision 61985)
+++ /trunk/src/VBox/Main/src-server/AudioAdapterImpl.cpp	(revision 61986)
@@ -60,5 +60,5 @@
  *  @param aParent  Handle of the parent object.
  */
-HRESULT AudioAdapter::init (Machine *aParent)
+HRESULT AudioAdapter::init(Machine *aParent)
 {
     LogFlowThisFunc(("aParent=%p\n", aParent));
@@ -103,5 +103,5 @@
  *  @note Locks @a aThat object for reading.
  */
-HRESULT AudioAdapter::init (Machine *aParent, AudioAdapter *aThat)
+HRESULT AudioAdapter::init(Machine *aParent, AudioAdapter *aThat)
 {
     LogFlowThisFunc(("aParent=%p, aThat=%p\n", aParent, aThat));
@@ -116,5 +116,5 @@
     unconst(mPeer) = aThat;
 
-    AutoCaller thatCaller (aThat);
+    AutoCaller thatCaller(aThat);
     AssertComRCReturnRC(thatCaller.rc());
 
@@ -135,5 +135,5 @@
  *  @note Locks @a aThat object for reading.
  */
-HRESULT AudioAdapter::initCopy (Machine *aParent, AudioAdapter *aThat)
+HRESULT AudioAdapter::initCopy(Machine *aParent, AudioAdapter *aThat)
 {
     LogFlowThisFunc(("aParent=%p, aThat=%p\n", aParent, aThat));
@@ -148,5 +148,5 @@
     /* mPeer is left null */
 
-    AutoCaller thatCaller (aThat);
+    AutoCaller thatCaller(aThat);
     AssertComRCReturnRC(thatCaller.rc());
 
@@ -316,6 +316,6 @@
 
             default:
-                AssertMsgFailed (("Wrong audio controller type %d\n",
-                                  aAudioController));
+                AssertMsgFailed(("Wrong audio controller type %d\n",
+                                 aAudioController));
                 rc = E_FAIL;
         }
@@ -381,6 +381,6 @@
 
         default:
-            AssertMsgFailed (("Wrong audio controller type %d\n",
-                              mData->controllerType));
+            AssertMsgFailed(("Wrong audio controller type %d\n",
+                             mData->controllerType));
             rc = E_FAIL;
     }
@@ -388,5 +388,5 @@
     if (!SUCCEEDED(rc))
         return setError(rc,
-                        tr ("Invalid audio codec type %d"),
+                        tr("Invalid audio codec type %d"),
                         aAudioCodec);
 
@@ -535,9 +535,9 @@
     /* sanity */
     AutoCaller autoCaller(this);
-    AssertComRCReturnVoid (autoCaller.rc());
+    AssertComRCReturnVoid(autoCaller.rc());
 
     /* sanity too */
-    AutoCaller peerCaller (mPeer);
-    AssertComRCReturnVoid (peerCaller.rc());
+    AutoCaller peerCaller(mPeer);
+    AssertComRCReturnVoid(peerCaller.rc());
 
     /* lock both for writing since we modify both (mPeer is "master" so locked
@@ -562,13 +562,13 @@
 void AudioAdapter::i_copyFrom(AudioAdapter *aThat)
 {
-    AssertReturnVoid (aThat != NULL);
+    AssertReturnVoid(aThat != NULL);
 
     /* sanity */
     AutoCaller autoCaller(this);
-    AssertComRCReturnVoid (autoCaller.rc());
+    AssertComRCReturnVoid(autoCaller.rc());
 
     /* sanity too */
-    AutoCaller thatCaller (aThat);
-    AssertComRCReturnVoid (thatCaller.rc());
+    AutoCaller thatCaller(aThat);
+    AssertComRCReturnVoid(thatCaller.rc());
 
     /* peer is not modified, lock it for reading (aThat is "master" so locked
