diff --git a/src/libs/vgeometry/vsplinepoint_p.h b/src/libs/vgeometry/vsplinepoint_p.h index 9e6dbf52d..129228c76 100644 --- a/src/libs/vgeometry/vsplinepoint_p.h +++ b/src/libs/vgeometry/vsplinepoint_p.h @@ -62,7 +62,6 @@ public: { if (VFuzzyComparePossibleNulls(angle1, angle2) || not qFuzzyCompare(qAbs(angle1-angle2), 180) ) { - qDebug()<<"Make angle1 and angle2 correct."; this->angle2 = this->angle1 + 180; } } @@ -174,8 +173,6 @@ VSplinePointData::VSplinePointData(VPointF pSpline, qreal angle1, const QString { if (not VFuzzyComparePossibleNulls(qAbs(angle1-angle2), 180)) { - qDebug()<<"Make angle1 and angle2 correct."; - QLineF line (0, 0, 100, 0); if (not qmu::QmuTokenParser::IsSingle(angle1F) || qmu::QmuTokenParser::IsSingle(angle2F)) diff --git a/src/libs/vlayout/vtextmanager.cpp b/src/libs/vlayout/vtextmanager.cpp index 109e6a5e0..93b0ab718 100644 --- a/src/libs/vlayout/vtextmanager.cpp +++ b/src/libs/vlayout/vtextmanager.cpp @@ -350,7 +350,6 @@ void VTextManager::FitFontSize(qreal fW, qreal fH) while (lineLength > fW && iFS > MIN_FONT_SIZE); } SetFontSize(iFS); - qDebug() << "Font size" << GetSourceLinesCount() << iFS; } //--------------------------------------------------------------------------------------------------------------------- diff --git a/src/libs/vpatterndb/vpiecepath.cpp b/src/libs/vpatterndb/vpiecepath.cpp index 2b5416ed6..05e2fab0b 100644 --- a/src/libs/vpatterndb/vpiecepath.cpp +++ b/src/libs/vpatterndb/vpiecepath.cpp @@ -803,10 +803,8 @@ bool VPiecePath::IsVisible(const QHash cal(new Calculator()); const qreal result = cal->EvalFormula(vars, formula); - qDebug() << "Result: " << result; if (qIsInf(result) || qIsNaN(result)) { diff --git a/src/libs/vwidgets/vtextgraphicsitem.cpp b/src/libs/vwidgets/vtextgraphicsitem.cpp index 63fb54c2c..9bcf2daf4 100644 --- a/src/libs/vwidgets/vtextgraphicsitem.cpp +++ b/src/libs/vwidgets/vtextgraphicsitem.cpp @@ -244,7 +244,6 @@ void VTextGraphicsItem::paint(QPainter *painter, const QStyleOptionGraphicsItem */ void VTextGraphicsItem::SetSize(qreal fW, qreal fH) { - qDebug() << "Setting size to" << fW << parentItem()->boundingRect().width(); // don't allow resize under specific size if (fW > parentItem()->boundingRect().width()) { @@ -264,7 +263,6 @@ void VTextGraphicsItem::SetSize(qreal fW, qreal fH) } prepareGeometryChange(); - qDebug() << "Actual size set to" << fW; m_rectBoundingBox.setTopLeft(QPointF(0, 0)); m_rectBoundingBox.setWidth(fW); m_rectBoundingBox.setHeight(fH);