changeset 602:d030353eb9ac integration_library

Merge from the default branch
author mathieub <mathieu.barthet@eecs.qmul.ac.uk>
date Mon, 17 Oct 2011 15:25:57 +0100
parents 2bf6dc6bc4d1 (current diff) 3c29f7c1f079 (diff)
children
files
diffstat 1 files changed, 7 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- 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) {