瀏覽代碼

STYLE: Remove debug outputs

Julien Finet 15 年之前
父節點
當前提交
f83418870b
共有 2 個文件被更改,包括 1 次插入2 次删除
  1. 1 1
      Libs/Core/ctkTransferFunctionRepresentation.cpp
  2. 0 1
      Libs/Widgets/ctkTransferFunctionView.cpp

+ 1 - 1
Libs/Core/ctkTransferFunctionRepresentation.cpp

@@ -191,7 +191,7 @@ void ctkTransferFunctionRepresentation::computeCurve()
     {
     return;
     }
-  qDebug() << "computeCurve" << d->rect();
+
   d->TransferFunction->range(d->WorldRangeX[0], d->WorldRangeX[1]);
   d->WorldRangeY[0] = this->posY(d->TransferFunction->minValue());
   d->WorldRangeY[1] = this->posY(d->TransferFunction->maxValue());

+ 0 - 1
Libs/Widgets/ctkTransferFunctionView.cpp

@@ -95,5 +95,4 @@ void ctkTransferFunctionView::resizeEvent(QResizeEvent * event)
   // Control points are resized by the view transform, we want
   // fixed size control points, lines...
   //this->fitInView(this->scene()->sceneRect());
-  qDebug() << "resize event caught";
 }