summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKalle Viironen <kalle.viironen@theqtcompany.com>2015-05-05 13:54:07 +0300
committerKalle Viironen <kalle.viironen@theqtcompany.com>2015-05-06 06:52:29 +0000
commit445d29dbb8135944ff3a9283b7622de75d68e747 (patch)
tree94a6396fed61e80b775fadc26faa68b7ae744147
parentfa81aa6d027049e855b76f5408586a288f160575 (diff)
Add Missing Debug Operator Declaration for QTouchEvent::TouchPointv4.8.7
Debug operator for QTouchEvent::TouchPoint was added in fa81aa6d027049e855b76f5408586a288f160575 but that commit was missing the declaration. Change-Id: I1bce5f131c5995e0696babe3172cbba95704ac5d Reviewed-by: Friedemann Kleint <Friedemann.Kleint@theqtcompany.com>
-rw-r--r--src/gui/kernel/qevent.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gui/kernel/qevent.cpp b/src/gui/kernel/qevent.cpp
index e9cef98c4f..0519a6992f 100644
--- a/src/gui/kernel/qevent.cpp
+++ b/src/gui/kernel/qevent.cpp
@@ -3206,6 +3206,8 @@ QShortcutEvent::~QShortcutEvent()
#ifndef QT_NO_DEBUG_STREAM
+QDebug operator<<(QDebug, const QTouchEvent::TouchPoint &);
+
static inline void formatTouchPoint(QDebug d, const QTouchEvent::TouchPoint &tp)
{
d << "TouchPoint(" << tp.id() << ' ' << tp.rect();