Index: /trunk/src/VBox/Main/glue/EventQueue.cpp
===================================================================
--- /trunk/src/VBox/Main/glue/EventQueue.cpp	(revision 31370)
+++ /trunk/src/VBox/Main/glue/EventQueue.cpp	(revision 31371)
@@ -168,6 +168,6 @@
  *           XPCOM initialization or we'll end up using the wrong main queue.
  */
-/* static */ int
-EventQueue::init()
+/* static */
+int EventQueue::init()
 {
     Assert(mMainQueue == NULL);
@@ -196,6 +196,6 @@
  *  @returns VINF_SUCCESS
  */
-/* static */ int
-EventQueue::uninit()
+/* static */
+int EventQueue::uninit()
 {
     Assert(mMainQueue);
@@ -210,6 +210,6 @@
  *  Depends on init() being called first.
  */
-/* static */ EventQueue *
-EventQueue::getMainEventQueue()
+/* static */
+EventQueue* EventQueue::getMainEventQueue()
 {
     return mMainQueue;
@@ -259,6 +259,6 @@
  *  @param  cMsTimeout      How long to wait, or RT_INDEFINITE_WAIT.
  */
-static int
-waitForEventsOnUnix(nsIEventQueue *pQueue, unsigned cMsTimeout)
+static
+int waitForEventsOnUnix(nsIEventQueue *pQueue, unsigned cMsTimeout)
 {
     int     fd = pQueue->GetEventQueueSelectFD();
@@ -324,6 +324,6 @@
  * @returns VINF_SUCCESS or VERR_TIMEOUT.
  */
-static int
-processPendingEvents(nsIEventQueue *pQueue)
+static
+int processPendingEvents(nsIEventQueue *pQueue)
 {
     /* Check for timeout condition so the caller can be a bit more lazy. */
@@ -444,5 +444,5 @@
  *  @return         TRUE if successful and false otherwise
  */
-BOOL EventQueue::postEvent (Event *event)
+BOOL EventQueue::postEvent(Event *event)
 {
 #if defined (RT_OS_WINDOWS)
@@ -479,5 +479,5 @@
  *  @return         TRUE if successful and false otherwise
  */
-BOOL EventQueue::waitForEvent (Event **event)
+BOOL EventQueue::waitForEvent(Event **event)
 {
     Assert(event);
@@ -539,5 +539,5 @@
  *  is created.
  */
-BOOL EventQueue::handleEvent (Event *event)
+BOOL EventQueue::handleEvent(Event *event)
 {
     Assert(event);
@@ -558,5 +558,5 @@
  *  functionality.
  */
-int  EventQueue::getSelectFD()
+int EventQueue::getSelectFD()
 {
 #ifdef VBOX_WITH_XPCOM
