Fix building. Error about private members.

--HG--
branch : develop
This commit is contained in:
Roman Telezhynskyi 2016-10-23 19:45:45 +03:00
parent c203986111
commit 7d935add5b

View file

@ -428,7 +428,7 @@ void VToolDetail::paint(QPainter *painter, const QStyleOptionGraphicsItem *optio
#if QT_VERSION >= QT_VERSION_CHECK(5, 1, 0)
const qreal dScale = qSqrt(QPoint::dotProduct(p, p));
#else
const qreal dScale = qSqrt(p.xp * p.xp + p.yp * p.yp);
const qreal dScale = qSqrt(p.x() * p.x() + p.y() * p.y());
#endif //QT_VERSION >= QT_VERSION_CHECK(5, 1, 0)
grainLine->SetScale(100/dScale);
//qDebug() << "SCALE" << dScale << 10/dScale;