=== modified file 'mixxx/src/main.cpp'
--- mixxx/src/main.cpp	2009-12-26 17:03:16 +0000
+++ mixxx/src/main.cpp	2009-12-30 20:46:14 +0000
@@ -75,6 +75,7 @@
 
 void MessageOutput( QtMsgType type, const char * msg )
 {
+    /*
     static QMutex mutex;
     QMutexLocker locker(&mutex);
 
@@ -99,7 +100,7 @@
         fprintf( stderr, "Fatal: %s\n", msg );
         QMessageBox::warning(0, "Mixxx", msg);
         abort();
-    }
+    }*/
 }
 
 QFile Logfile; // global logfile variable
@@ -107,6 +108,7 @@
 
 void MessageToLogfile( QtMsgType type, const char * msg )
 {
+    /*
     static QMutex mutex;
     QMutexLocker locker(&mutex);
     
@@ -132,6 +134,7 @@
         abort();
     }
     Logfile.flush();
+    */
 }
 
 
@@ -142,6 +145,7 @@
  */
 void MessageHandler( QtMsgType type, const char * input )
 {
+ /*
     static QMutex mutex;
     QMutexLocker locker(&mutex);
     QString tmp = QString("[%1]: %2").arg(QThread::currentThread()->objectName()).arg(input);
@@ -194,6 +198,7 @@
         break; //NOTREACHED
     }
     Logfile.flush();
+    */
 }
 
 

