From 445d29dbb8135944ff3a9283b7622de75d68e747 Mon Sep 17 00:00:00 2001 From: Kalle Viironen Date: Tue, 5 May 2015 13:54:07 +0300 Subject: Add Missing Debug Operator Declaration for QTouchEvent::TouchPoint Debug operator for QTouchEvent::TouchPoint was added in fa81aa6d027049e855b76f5408586a288f160575 but that commit was missing the declaration. Change-Id: I1bce5f131c5995e0696babe3172cbba95704ac5d Reviewed-by: Friedemann Kleint --- src/gui/kernel/qevent.cpp | 2 ++ 1 file changed, 2 insertions(+) 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(); -- cgit v1.2.3