diff options
author | Kalle Viironen <kalle.viironen@theqtcompany.com> | 2015-05-05 10:54:07 (GMT) |
---|---|---|
committer | Kalle Viironen <kalle.viironen@theqtcompany.com> | 2015-05-06 06:52:29 (GMT) |
commit | 445d29dbb8135944ff3a9283b7622de75d68e747 (patch) | |
tree | 94a6396fed61e80b775fadc26faa68b7ae744147 /src | |
parent | fa81aa6d027049e855b76f5408586a288f160575 (diff) | |
download | Qt-4.8.7.zip Qt-4.8.7.tar.gz Qt-4.8.7.tar.bz2 |
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>
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/kernel/qevent.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gui/kernel/qevent.cpp b/src/gui/kernel/qevent.cpp index e9cef98..0519a69 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(); |