Remove forgotten trace messages.

This commit is contained in:
Jean-Paul Chaput 2008-10-21 14:38:42 +00:00
parent 26d07794ca
commit fcf01a1418
1 changed files with 8 additions and 6 deletions

View File

@ -307,7 +307,7 @@ namespace Hurricane {
, const Transformation& transformation , const Transformation& transformation
) )
{ {
cerr << "DrawingQuery::drawGo() - " << go << endl; //cerr << "DrawingQuery::drawGo() - " << go << endl;
const Segment* segment = dynamic_cast<const Segment*>(go); const Segment* segment = dynamic_cast<const Segment*>(go);
if ( segment ) { if ( segment ) {
@ -544,9 +544,9 @@ namespace Hurricane {
void CellWidget::redraw ( QRect redrawArea ) void CellWidget::redraw ( QRect redrawArea )
{ {
// cerr << "CellWidget::redraw() - " //cerr << "CellWidget::redraw() - "
// << _selectionHasChanged << " filter:" // << _selectionHasChanged << " filter:"
// << _queryFilter << endl; // << _queryFilter << endl;
_redrawRectCount = 0; _redrawRectCount = 0;
@ -617,12 +617,12 @@ namespace Hurricane {
if ( _showSelection ) if ( _showSelection )
redrawSelection ( redrawArea ); redrawSelection ( redrawArea );
//cerr << "CellWidget::redraw() - finished." << endl;
update (); update ();
popCursor (); popCursor ();
//cerr << "Redrawed rectangles: " << _redrawRectCount << endl; //cerr << "Redrawed objects: " << _redrawRectCount << endl;
//cerr << "CellWidget::redraw() - finished." << endl;
} }
@ -730,6 +730,7 @@ namespace Hurricane {
void CellWidget::drawLine ( DbU::Unit x1, DbU::Unit y1, DbU::Unit x2, DbU::Unit y2 ) void CellWidget::drawLine ( DbU::Unit x1, DbU::Unit y1, DbU::Unit x2, DbU::Unit y2 )
{ {
_redrawRectCount++;
_drawingPlanes.setLineMode ( true ); _drawingPlanes.setLineMode ( true );
_drawingPlanes.painter().drawLine ( dbuToDisplayPoint(x1,y1), dbuToDisplayPoint(x2,y2) ); _drawingPlanes.painter().drawLine ( dbuToDisplayPoint(x1,y1), dbuToDisplayPoint(x2,y2) );
} }
@ -737,6 +738,7 @@ namespace Hurricane {
void CellWidget::drawLine ( const Point& p1, const Point& p2 ) void CellWidget::drawLine ( const Point& p1, const Point& p2 )
{ {
_redrawRectCount++;
_drawingPlanes.setLineMode ( true ); _drawingPlanes.setLineMode ( true );
_drawingPlanes.painter().drawLine ( dbuToDisplayPoint(p1), dbuToDisplayPoint(p2) ); _drawingPlanes.painter().drawLine ( dbuToDisplayPoint(p1), dbuToDisplayPoint(p2) );
} }