From 5cc45e35e2135b1009ba4d9e8f023c301361524d Mon Sep 17 00:00:00 2001 From: Uwe Rathmann Date: Thu, 14 Jun 2018 13:19:04 +0200 Subject: [PATCH] typos fixed --- src/controls/QskGestureRecognizer.cpp | 1 + src/inputpanel/QskInputPanel.cpp | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/controls/QskGestureRecognizer.cpp b/src/controls/QskGestureRecognizer.cpp index 16ff58e9..aae9abff 100644 --- a/src/controls/QskGestureRecognizer.cpp +++ b/src/controls/QskGestureRecognizer.cpp @@ -285,6 +285,7 @@ bool QskGestureRecognizer::processEvent( { // should not happen, when using the recognizer correctly qWarning() << "QskGestureRecognizer: pressed, while not being idle"; + abort(); return false; } diff --git a/src/inputpanel/QskInputPanel.cpp b/src/inputpanel/QskInputPanel.cpp index a735aecc..4bb32d89 100644 --- a/src/inputpanel/QskInputPanel.cpp +++ b/src/inputpanel/QskInputPanel.cpp @@ -37,9 +37,9 @@ static inline void qskSendText( QQuickItem* receiver, QInputMethodEvent event; /* - QQuickTextInput is buggy when receiving empty - empty commit strings. We need to send a wrong - replaceLength to work around it. See QTBUG: 68874 + QQuickTextInput is buggy when receiving empty commit strings. + We need to send a wrong replaceLength to work around it. + See QTBUG: 68874 */ if ( text.isEmpty() ) event.setCommitString( text, 0, 1 );