Fixed build on Mac OS X.
--HG-- branch : develop
This commit is contained in:
parent
f4595dc319
commit
5e6752793e
|
@ -101,13 +101,7 @@ VPointF &VPointF::operator =(const VPointF &point)
|
||||||
}
|
}
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------------------------------------------
|
||||||
VPointF::operator const QPointF() const
|
VPointF::operator QPointF() const
|
||||||
{
|
|
||||||
return toQPointF();
|
|
||||||
}
|
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------------------------------------------
|
|
||||||
VPointF::operator QPointF()
|
|
||||||
{
|
{
|
||||||
return toQPointF();
|
return toQPointF();
|
||||||
}
|
}
|
||||||
|
|
|
@ -58,8 +58,7 @@ public:
|
||||||
const Draw &mode = Draw::Calculation);
|
const Draw &mode = Draw::Calculation);
|
||||||
virtual ~VPointF() Q_DECL_OVERRIDE;
|
virtual ~VPointF() Q_DECL_OVERRIDE;
|
||||||
VPointF &operator=(const VPointF &point);
|
VPointF &operator=(const VPointF &point);
|
||||||
operator QPointF();
|
operator QPointF() const;
|
||||||
operator const QPointF() const;
|
|
||||||
VPointF Rotate(const QPointF &originPoint, qreal degrees, const QString &prefix = QString()) const;
|
VPointF Rotate(const QPointF &originPoint, qreal degrees, const QString &prefix = QString()) const;
|
||||||
qreal mx() const;
|
qreal mx() const;
|
||||||
qreal my() const;
|
qreal my() const;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user