From 2765409d2bdc79753f96bf6bb894b2884ac5b0cd Mon Sep 17 00:00:00 2001 From: Nikolai Kosjar Date: Wed, 17 Jan 2018 08:41:04 +0100 Subject: [PATCH] TextEditor: Remove left-over qDebugs() Change-Id: Ia5277b1eb40d35c59b2de09c88b44b180375a64f Reviewed-by: Christian Stenger --- src/plugins/texteditor/texteditor.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/plugins/texteditor/texteditor.cpp b/src/plugins/texteditor/texteditor.cpp index 4b2b428f019..c3fb788d25b 100644 --- a/src/plugins/texteditor/texteditor.cpp +++ b/src/plugins/texteditor/texteditor.cpp @@ -309,7 +309,6 @@ public: const int documentRevision = textCursor.document()->revision(); const int position = Text::wordStartCursor(textCursor).position(); if (m_lastHandlerInfo.applies(documentRevision, position)) { - qDebug() << "Last handler applies, showing it"; m_lastHandlerInfo.handler->showToolTip(m_widget, point, /*decorate=*/ false); return; } @@ -365,7 +364,6 @@ public: // All were queried, run the best if (m_bestHandler) { - qDebug() << "setting last handler info:" << m_documentRevision << m_position; m_lastHandlerInfo = LastHandlerInfo(m_bestHandler, m_documentRevision, m_position); m_bestHandler->showToolTip(m_widget, m_point); }