diff data/model/Model.cpp @ 843:e802e550a1f2

Drop std:: from cout, cerr, endl -- pull these in through Debug.h
author Chris Cannam
date Tue, 26 Nov 2013 13:35:08 +0000
parents 1424aa29ae95
children 59e7fe1b1003
line wrap: on
line diff
--- a/data/model/Model.cpp	Tue Nov 26 11:16:37 2013 +0000
+++ b/data/model/Model.cpp	Tue Nov 26 13:35:08 2013 +0000
@@ -59,13 +59,13 @@
 void
 Model::aboutToDelete()
 {
-//    std::cerr << "Model(" << this << ")::aboutToDelete()" << std::endl;
+//    cerr << "Model(" << this << ")::aboutToDelete()" << endl;
 
     if (m_aboutToDelete) {
-        std::cerr << "WARNING: Model(" << this << ", \""
+        cerr << "WARNING: Model(" << this << ", \""
                   << objectName() << "\")::aboutToDelete: "
                   << "aboutToDelete called more than once for the same model"
-                  << std::endl;
+                  << endl;
     }
 
     emit aboutToBeDeleted();
@@ -141,7 +141,7 @@
     }
     int completion = 0;
     (void)m_alignment->isReady(&completion);
-//    std::cerr << " -> " << completion << std::endl;
+//    cerr << " -> " << completion << endl;
     return completion;
 }