diff data/model/Model.cpp @ 690:1424aa29ae95

Seems to be a bad idea to use plain DEBUG symbol on OS/X (system wants it)
author Chris Cannam
date Tue, 14 Jun 2011 15:26:52 +0100
parents 06f13a3b9e9e
children e802e550a1f2
line wrap: on
line diff
--- a/data/model/Model.cpp	Tue Jun 14 14:47:59 2011 +0100
+++ b/data/model/Model.cpp	Tue Jun 14 15:26:52 2011 +0100
@@ -24,10 +24,10 @@
 
 Model::~Model()
 {
-//    DEBUG << "Model::~Model(" << this << ")" << endl;
+//    SVDEBUG << "Model::~Model(" << this << ")" << endl;
 
     if (!m_aboutToDelete) {
-        DEBUG << "NOTE: Model::~Model(" << this << ", \""
+        SVDEBUG << "NOTE: Model::~Model(" << this << ", \""
                   << objectName() << "\"): Model deleted "
                   << "with no aboutToDelete notification" << endl;
     }
@@ -134,7 +134,7 @@
 int
 Model::getAlignmentCompletion() const
 {
-//    DEBUG << "Model::getAlignmentCompletion" << endl;
+//    SVDEBUG << "Model::getAlignmentCompletion" << endl;
     if (!m_alignment) {
         if (m_sourceModel) return m_sourceModel->getAlignmentCompletion();
         else return 100;