Rename DraggablePixmapItem::move() overload as moveTo to avoid confusion

This commit is contained in:
BigBahss
2021-03-22 21:57:34 -04:00
committed by Tyler Dennis
parent 5f292ea3cc
commit a9c7691a2e
3 changed files with 13 additions and 6 deletions

View File

@@ -33,8 +33,8 @@ public:
int last_y;
void updatePosition();
void move(int x, int y);
void move(const QPoint &pos) { move(pos.x(), pos.y()); }
void move(int dx, int dy);
void moveTo(const QPoint &pos);
void emitPositionChanged();
void updatePixmap();
void bind(QComboBox *combo, QString key);