Index: /trunk/src/VBox/Main/src-all/EventImpl.cpp
===================================================================
--- /trunk/src/VBox/Main/src-all/EventImpl.cpp	(revision 50542)
+++ /trunk/src/VBox/Main/src-all/EventImpl.cpp	(revision 50543)
@@ -412,5 +412,6 @@
     void release()
     {
-        if (ASMAtomicDecS32(&mRefCnt) <= 0) delete this;
+        if (ASMAtomicDecS32(&mRefCnt) <= 0)
+            delete this;
     }
 
@@ -594,8 +595,10 @@
     HRESULT dequeue(IEvent **aEvent, LONG aTimeout, AutoLockBase &aAlock);
     HRESULT eventProcessed(IEvent *aEvent, PendingEventsMap::iterator &pit);
+
     void addRef()
     {
         ASMAtomicIncS32(&mRefCnt);
     }
+
     void release()
     {
@@ -603,4 +606,5 @@
             delete this;
     }
+
     BOOL isActive()
     {
@@ -672,5 +676,7 @@
 struct EventSource::Data
 {
-    Data() {}
+    Data()
+    {}
+
     Listeners                     mListeners;
     EventMap                      mEvMap;
@@ -743,5 +749,5 @@
     else
     {
-        mQEvent =NIL_RTSEMEVENT;
+        mQEvent = NIL_RTSEMEVENT;
         RT_ZERO(mcsQLock);
         mLastRead = 0;
@@ -940,4 +946,5 @@
     if (autoUninitSpan.uninitDone())
         return;
+
     m->mListeners.clear();
     // m->mEvMap shall be cleared at this point too by destructors, assert?
