Mercurial > hg > svgui
diff layer/NoteLayer.cpp @ 587:4806715f7a19
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:27:05 +0100 |
parents | f4960f8ce798 |
children | 1336439dc055 ab9fefdaa103 |
line wrap: on
line diff
--- a/layer/NoteLayer.cpp Tue Jun 14 14:48:29 2011 +0100 +++ b/layer/NoteLayer.cpp Tue Jun 14 15:27:05 2011 +0100 @@ -60,7 +60,7 @@ connectSignals(m_model); -// DEBUG << "NoteLayer::setModel(" << model << ")" << endl; +// SVDEBUG << "NoteLayer::setModel(" << model << ")" << endl; m_scaleMinimum = 0; m_scaleMaximum = 0; @@ -253,7 +253,7 @@ m_scaleMinimum = min; m_scaleMaximum = max; -// DEBUG << "NoteLayer::setDisplayExtents: min = " << min << ", max = " << max << endl; +// SVDEBUG << "NoteLayer::setDisplayExtents: min = " << min << ", max = " << max << endl; emit layerParametersChanged(); return true; @@ -334,7 +334,7 @@ newmax = max; } - DEBUG << "NoteLayer::setVerticalZoomStep: " << step << ": " << newmin << " -> " << newmax << " (range " << newdist << ")" << endl; + SVDEBUG << "NoteLayer::setVerticalZoomStep: " << step << ": " << newmin << " -> " << newmax << " (range " << newdist << ")" << endl; setDisplayExtents(newmin, newmax); } @@ -724,7 +724,7 @@ QColor brushColour(getBaseQColor()); brushColour.setAlpha(80); -// DEBUG << "NoteLayer::paint: resolution is " +// SVDEBUG << "NoteLayer::paint: resolution is " // << m_model->getResolution() << " frames" << endl; float min = m_model->getValueMinimum(); @@ -794,7 +794,7 @@ void NoteLayer::drawStart(View *v, QMouseEvent *e) { -// DEBUG << "NoteLayer::drawStart(" << e->x() << "," << e->y() << ")" << endl; +// SVDEBUG << "NoteLayer::drawStart(" << e->x() << "," << e->y() << ")" << endl; if (!m_model) return; @@ -818,7 +818,7 @@ void NoteLayer::drawDrag(View *v, QMouseEvent *e) { -// DEBUG << "NoteLayer::drawDrag(" << e->x() << "," << e->y() << ")" << endl; +// SVDEBUG << "NoteLayer::drawDrag(" << e->x() << "," << e->y() << ")" << endl; if (!m_model || !m_editing) return; @@ -847,7 +847,7 @@ void NoteLayer::drawEnd(View *, QMouseEvent *) { -// DEBUG << "NoteLayer::drawEnd(" << e->x() << "," << e->y() << ")" << endl; +// SVDEBUG << "NoteLayer::drawEnd(" << e->x() << "," << e->y() << ")" << endl; if (!m_model || !m_editing) return; finish(m_editingCommand); m_editingCommand = 0; @@ -897,7 +897,7 @@ void NoteLayer::editStart(View *v, QMouseEvent *e) { -// DEBUG << "NoteLayer::editStart(" << e->x() << "," << e->y() << ")" << endl; +// SVDEBUG << "NoteLayer::editStart(" << e->x() << "," << e->y() << ")" << endl; if (!m_model) return; @@ -920,7 +920,7 @@ void NoteLayer::editDrag(View *v, QMouseEvent *e) { -// DEBUG << "NoteLayer::editDrag(" << e->x() << "," << e->y() << ")" << endl; +// SVDEBUG << "NoteLayer::editDrag(" << e->x() << "," << e->y() << ")" << endl; if (!m_model || !m_editing) return; @@ -949,7 +949,7 @@ void NoteLayer::editEnd(View *, QMouseEvent *) { -// DEBUG << "NoteLayer::editEnd(" << e->x() << "," << e->y() << ")" << endl; +// SVDEBUG << "NoteLayer::editEnd(" << e->x() << "," << e->y() << ")" << endl; if (!m_model || !m_editing) return; if (m_editingCommand) {