Compilefix from Pauls high DPI changes

Change-Id: I871cf93c690be2709d4fb6a1377f102c8d32e243
This commit is contained in:
Jørgen Lind 2015-08-26 17:08:59 +02:00
parent 3aa93bb379
commit db75602d80
2 changed files with 6 additions and 6 deletions

View File

@ -89,15 +89,15 @@ void QWaylandDrag::cancel()
m_display->currentInputDevice()->dataDevice()->cancelDrag();
}
void QWaylandDrag::move(const QMouseEvent *me)
void QWaylandDrag::move(const QPoint &globalPos)
{
Q_UNUSED(me);
Q_UNUSED(globalPos);
// Do nothing
}
void QWaylandDrag::drop(const QMouseEvent *me)
void QWaylandDrag::drop(const QPoint &globalPos)
{
Q_UNUSED(me);
Q_UNUSED(globalPos);
// Do nothing
}

View File

@ -63,8 +63,8 @@ public:
protected:
void startDrag() Q_DECL_OVERRIDE;
void cancel() Q_DECL_OVERRIDE;
void move(const QMouseEvent *me) Q_DECL_OVERRIDE;
void drop(const QMouseEvent *me) Q_DECL_OVERRIDE;
void move(const QPoint &globalPos) Q_DECL_OVERRIDE;
void drop(const QPoint &globalPos) Q_DECL_OVERRIDE;
void endDrag() Q_DECL_OVERRIDE;