summaryrefslogtreecommitdiffstats
path: root/src/gui/kernel/qevent.cpp
diff options
context:
space:
mode:
authorShawn Rutledge <shawn.rutledge@digia.com>2014-11-25 09:49:07 +0100
committerShawn Rutledge <shawn.rutledge@digia.com>2014-11-26 08:41:53 +0100
commit7dcbd519c418e8f48fb90c90e3b0224017296632 (patch)
treece50d29915f792a61a74b6981860eafd85442fd4 /src/gui/kernel/qevent.cpp
parentf96cd3187df78e121546df2a87432013d0b1a870 (diff)
don't use QCursor if QT_NO_CURSOR
to support configure -no-feature-CURSOR Change-Id: I8e7f9a7f80d3d44a1f8e25b909d552351b5f37e4 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@theqtcompany.com>
Diffstat (limited to 'src/gui/kernel/qevent.cpp')
-rw-r--r--src/gui/kernel/qevent.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gui/kernel/qevent.cpp b/src/gui/kernel/qevent.cpp
index a8539e8013..a8c34a8871 100644
--- a/src/gui/kernel/qevent.cpp
+++ b/src/gui/kernel/qevent.cpp
@@ -207,7 +207,9 @@ QMouseEvent::QMouseEvent(Type type, const QPointF &localPos, Qt::MouseButton but
Qt::MouseButtons buttons, Qt::KeyboardModifiers modifiers)
: QInputEvent(type, modifiers), l(localPos), w(localPos), b(button), mouseState(buttons), caps(0)
{
+#ifndef QT_NO_CURSOR
s = QCursor::pos();
+#endif
}
@@ -1545,7 +1547,9 @@ QContextMenuEvent::~QContextMenuEvent()
QContextMenuEvent::QContextMenuEvent(Reason reason, const QPoint &pos)
: QInputEvent(ContextMenu), p(pos), reas(reason)
{
+#ifndef QT_NO_CURSOR
gp = QCursor::pos();
+#endif
}
/*!