forked from github_mirror/framelesshelper
fix build with qt5
Signed-off-by: Yuhang Zhao <2546789017@qq.com>
This commit is contained in:
parent
b1f0e38fc8
commit
8ccd39ac9b
|
@ -210,7 +210,7 @@ void FramelessWidgetsHelper::mousePressEventHandler(QMouseEvent *event)
|
|||
#if (QT_VERSION >= QT_VERSION_CHECK(6, 0, 0))
|
||||
const QPoint scenePos = event->scenePosition().toPoint();
|
||||
#else
|
||||
const QPoint scenePos = event->windowPos();
|
||||
const QPoint scenePos = event->windowPos().toPoint();
|
||||
#endif
|
||||
if (shouldIgnoreMouseEvents(scenePos)) {
|
||||
return;
|
||||
|
@ -233,7 +233,7 @@ void FramelessWidgetsHelper::mouseReleaseEventHandler(QMouseEvent *event)
|
|||
#if (QT_VERSION >= QT_VERSION_CHECK(6, 0, 0))
|
||||
const QPoint scenePos = event->scenePosition().toPoint();
|
||||
#else
|
||||
const QPoint scenePos = event->windowPos();
|
||||
const QPoint scenePos = event->windowPos().toPoint();
|
||||
#endif
|
||||
if (shouldIgnoreMouseEvents(scenePos)) {
|
||||
return;
|
||||
|
@ -264,7 +264,7 @@ void FramelessWidgetsHelper::mouseDoubleClickEventHandler(QMouseEvent *event)
|
|||
#if (QT_VERSION >= QT_VERSION_CHECK(6, 0, 0))
|
||||
const QPoint scenePos = event->scenePosition().toPoint();
|
||||
#else
|
||||
const QPoint scenePos = event->windowPos();
|
||||
const QPoint scenePos = event->windowPos().toPoint();
|
||||
#endif
|
||||
if (shouldIgnoreMouseEvents(scenePos)) {
|
||||
return;
|
||||
|
|
Loading…
Reference in New Issue