Index: /trunk/src/VBox/Main/src-client/GuestImpl.cpp
===================================================================
--- /trunk/src/VBox/Main/src-client/GuestImpl.cpp	(revision 42816)
+++ /trunk/src/VBox/Main/src-client/GuestImpl.cpp	(revision 42817)
@@ -47,5 +47,5 @@
 /////////////////////////////////////////////////////////////////////////////
 
-DEFINE_EMPTY_CTOR_DTOR (Guest)
+DEFINE_EMPTY_CTOR_DTOR(Guest)
 
 HRESULT Guest::FinalConstruct()
@@ -56,5 +56,5 @@
 void Guest::FinalRelease()
 {
-    uninit ();
+    uninit();
     BaseFinalRelease();
 }
@@ -104,8 +104,7 @@
 
     mMagic = GUEST_MAGIC;
-    int vrc = RTTimerLRCreate (&mStatTimer, 1000 /* ms */,
-                               &Guest::staticUpdateStats, this);
-    AssertMsgRC (vrc, ("Failed to create guest statistics "
-                       "update timer(%Rra)\n", vrc));
+    int vrc = RTTimerLRCreate(&mStatTimer, 1000 /* ms */,
+                              &Guest::staticUpdateStats, this);
+    AssertMsgRC(vrc, ("Failed to create guest statistics update timer(%Rra)\n", vrc));
 
 #ifdef VBOX_WITH_GUEST_CONTROL
@@ -165,7 +164,6 @@
 
     /* Destroy stat update timer */
-    int vrc = RTTimerLRDestroy (mStatTimer);
-    AssertMsgRC (vrc, ("Failed to create guest statistics "
-                       "update timer(%Rra)\n", vrc));
+    int vrc = RTTimerLRDestroy(mStatTimer);
+    AssertMsgRC(vrc, ("Failed to create guest statistics update timer(%Rra)\n", vrc));
     mStatTimer = NULL;
     mMagic     = 0;
@@ -182,11 +180,11 @@
 void Guest::staticUpdateStats(RTTIMERLR hTimerLR, void *pvUser, uint64_t iTick)
 {
-    AssertReturnVoid (pvUser != NULL);
-    Guest *guest = static_cast <Guest *> (pvUser);
+    AssertReturnVoid(pvUser != NULL);
+    Guest *guest = static_cast<Guest *>(pvUser);
     Assert(guest->mMagic == GUEST_MAGIC);
     if (guest->mMagic == GUEST_MAGIC)
         guest->updateStats(iTick);
 
-    NOREF (hTimerLR);
+    NOREF(hTimerLR);
 }
 
@@ -222,5 +220,5 @@
     uZeroMem        = 0;
 
-    Console::SafeVMPtr pVM (mParent);
+    Console::SafeVMPtr pVM(mParent);
     if (pVM.isOk())
     {
@@ -296,5 +294,5 @@
 }
 
-STDMETHODIMP Guest::COMGETTER(AdditionsRunLevel) (AdditionsRunLevelType_T *aRunLevel)
+STDMETHODIMP Guest::COMGETTER(AdditionsRunLevel)(AdditionsRunLevelType_T *aRunLevel)
 {
     AutoCaller autoCaller(this);
