Index: trunk/BNC/src/orbComp/sp3Comp.cpp
===================================================================
--- trunk/BNC/src/orbComp/sp3Comp.cpp	(revision 9587)
+++ trunk/BNC/src/orbComp/sp3Comp.cpp	(revision 9592)
@@ -84,13 +84,13 @@
   }
   if (!_log) {
-    *_log  << "ERROR: SP3Comp requires logfile specification" << Qt::endl;
+    *_log  << "ERROR: SP3Comp requires logfile specification" << endl;
     goto exit;
   }
 
   for (int ii = 0; ii < _sp3FileNames.size(); ii++) {
-    *_log << "! SP3 File " << ii+1 << ": " << _sp3FileNames[ii] << Qt::endl;
+    *_log << "! SP3 File " << ii+1 << ": " << _sp3FileNames[ii] << endl;
   }
   if (_sp3FileNames.size() != 2) {
-    *_log << "ERROR: sp3Comp requires two input SP3 files" << Qt::endl;
+    *_log << "ERROR: sp3Comp requires two input SP3 files" << endl;
     goto end;
   }
@@ -102,20 +102,20 @@
   }
   catch (const string& error) {
-    *_log << "ERROR: " << error.c_str() << Qt::endl;
+    *_log << "ERROR: " << error.c_str() << endl;
   }
   catch (const char* error) {
-    *_log << "ERROR: " << error << Qt::endl;
+    *_log << "ERROR: " << error << endl;
   }
   catch (Exception& exc) {
-    *_log << "ERROR: " << exc.what() << Qt::endl;
+    *_log << "ERROR: " << exc.what() << endl;
   }
   catch (std::exception& exc) {
-    *_log << "ERROR: " << exc.what() << Qt::endl;
+    *_log << "ERROR: " << exc.what() << endl;
   }
   catch (QString error) {
-    *_log << "ERROR: " << error << Qt::endl;
+    *_log << "ERROR: " << error << endl;
   }
   catch (...) {
-    *_log << "ERROR: " << "unknown exception" << Qt::endl;
+    *_log << "ERROR: " << "unknown exception" << endl;
   }
 
