Mercurial > hg > svgui
diff layer/TimeInstantLayer.cpp @ 682:1a0dfcbffaf1
Drop std:: from cout, cerr, endl -- pull these in through Debug.h
author | Chris Cannam |
---|---|
date | Tue, 26 Nov 2013 14:06:40 +0000 |
parents | 3c29f7c1f079 |
children | 97ea68f62c1f 1d526ba11a24 |
line wrap: on
line diff
--- a/layer/TimeInstantLayer.cpp Tue Nov 26 11:16:45 2013 +0000 +++ b/layer/TimeInstantLayer.cpp Tue Nov 26 14:06:40 2013 +0000 @@ -60,7 +60,7 @@ connectSignals(m_model); #ifdef DEBUG_TIME_INSTANT_LAYER - std::cerr << "TimeInstantLayer::setModel(" << model << ")" << std::endl; + cerr << "TimeInstantLayer::setModel(" << model << ")" << endl; #endif if (m_model && m_model->getRDFTypeURI().endsWith("Segment")) { @@ -469,7 +469,7 @@ TimeInstantLayer::drawStart(View *v, QMouseEvent *e) { #ifdef DEBUG_TIME_INSTANT_LAYER - std::cerr << "TimeInstantLayer::drawStart(" << e->x() << ")" << std::endl; + cerr << "TimeInstantLayer::drawStart(" << e->x() << ")" << endl; #endif if (!m_model) return; @@ -492,7 +492,7 @@ TimeInstantLayer::drawDrag(View *v, QMouseEvent *e) { #ifdef DEBUG_TIME_INSTANT_LAYER - std::cerr << "TimeInstantLayer::drawDrag(" << e->x() << ")" << std::endl; + cerr << "TimeInstantLayer::drawDrag(" << e->x() << ")" << endl; #endif if (!m_model || !m_editing) return; @@ -509,7 +509,7 @@ TimeInstantLayer::drawEnd(View *, QMouseEvent *e) { #ifdef DEBUG_TIME_INSTANT_LAYER - std::cerr << "TimeInstantLayer::drawEnd(" << e->x() << ")" << std::endl; + cerr << "TimeInstantLayer::drawEnd(" << e->x() << ")" << endl; #endif if (!m_model || !m_editing) return; QString newName = tr("Add Point at %1 s") @@ -570,7 +570,7 @@ TimeInstantLayer::editStart(View *v, QMouseEvent *e) { #ifdef DEBUG_TIME_INSTANT_LAYER - std::cerr << "TimeInstantLayer::editStart(" << e->x() << ")" << std::endl; + cerr << "TimeInstantLayer::editStart(" << e->x() << ")" << endl; #endif if (!m_model) return; @@ -592,7 +592,7 @@ TimeInstantLayer::editDrag(View *v, QMouseEvent *e) { #ifdef DEBUG_TIME_INSTANT_LAYER - std::cerr << "TimeInstantLayer::editDrag(" << e->x() << ")" << std::endl; + cerr << "TimeInstantLayer::editDrag(" << e->x() << ")" << endl; #endif if (!m_model || !m_editing) return; @@ -615,7 +615,7 @@ TimeInstantLayer::editEnd(View *, QMouseEvent *e) { #ifdef DEBUG_TIME_INSTANT_LAYER - std::cerr << "TimeInstantLayer::editEnd(" << e->x() << ")" << std::endl; + cerr << "TimeInstantLayer::editEnd(" << e->x() << ")" << endl; #endif if (!m_model || !m_editing) return; if (m_editingCommand) {