remove redundant TODOs

This commit is contained in:
anatoly-os 2019-03-07 13:37:23 +02:00
parent 75ad1c80e0
commit c2d382241e

View file

@ -206,9 +206,7 @@ class Element : public ScoreElement {
bool generated() const { return flag(ElementFlag::GENERATED); }
void setGenerated(bool val) { setFlag(ElementFlag::GENERATED, val); }
//TODO: rename to pos()
const QPointF& ipos() const { return _pos; }
//TODO: rename to posWithUserOffset()
virtual const QPointF pos() const { return _pos + _offset; }
virtual qreal x() const { return _pos.x() + _offset.x(); }
virtual qreal y() const { return _pos.y() + _offset.y(); }