# HG changeset patch # User mathieub # Date 1318861557 -3600 # Node ID d030353eb9ac3da7479848a14a883a32c83e6ba9 # Parent 2bf6dc6bc4d16278ade9a86936b42a446bce737d# Parent 3c29f7c1f07965acadca986ba7372ccf35c00e4a Merge from the default branch diff -r 2bf6dc6bc4d1 -r d030353eb9ac layer/TimeInstantLayer.cpp --- a/layer/TimeInstantLayer.cpp Mon Oct 10 17:19:58 2011 +0100 +++ b/layer/TimeInstantLayer.cpp Mon Oct 17 15:25:57 2011 +0100 @@ -60,7 +60,7 @@ connectSignals(m_model); #ifdef DEBUG_TIME_INSTANT_LAYER - SVDEBUG << "TimeInstantLayer::setModel(" << model << ")" << endl; + std::cerr << "TimeInstantLayer::setModel(" << model << ")" << std::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 - SVDEBUG << "TimeInstantLayer::drawStart(" << e->x() << ")" << endl; + std::cerr << "TimeInstantLayer::drawStart(" << e->x() << ")" << std::endl; #endif if (!m_model) return; @@ -492,7 +492,7 @@ TimeInstantLayer::drawDrag(View *v, QMouseEvent *e) { #ifdef DEBUG_TIME_INSTANT_LAYER - SVDEBUG << "TimeInstantLayer::drawDrag(" << e->x() << ")" << endl; + std::cerr << "TimeInstantLayer::drawDrag(" << e->x() << ")" << std::endl; #endif if (!m_model || !m_editing) return; @@ -509,7 +509,7 @@ TimeInstantLayer::drawEnd(View *, QMouseEvent *e) { #ifdef DEBUG_TIME_INSTANT_LAYER - SVDEBUG << "TimeInstantLayer::drawEnd(" << e->x() << ")" << endl; + std::cerr << "TimeInstantLayer::drawEnd(" << e->x() << ")" << std::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 - SVDEBUG << "TimeInstantLayer::editStart(" << e->x() << ")" << endl; + std::cerr << "TimeInstantLayer::editStart(" << e->x() << ")" << std::endl; #endif if (!m_model) return; @@ -592,7 +592,7 @@ TimeInstantLayer::editDrag(View *v, QMouseEvent *e) { #ifdef DEBUG_TIME_INSTANT_LAYER - SVDEBUG << "TimeInstantLayer::editDrag(" << e->x() << ")" << endl; + std::cerr << "TimeInstantLayer::editDrag(" << e->x() << ")" << std::endl; #endif if (!m_model || !m_editing) return; @@ -615,7 +615,7 @@ TimeInstantLayer::editEnd(View *, QMouseEvent *e) { #ifdef DEBUG_TIME_INSTANT_LAYER - SVDEBUG << "TimeInstantLayer::editEnd(" << e->x() << ")" << endl; + std::cerr << "TimeInstantLayer::editEnd(" << e->x() << ")" << std::endl; #endif if (!m_model || !m_editing) return; if (m_editingCommand) {