aboutsummaryrefslogtreecommitdiffstats
path: root/plugin
diff options
context:
space:
mode:
authorAlexandra Betouni <ABetouni@luxoft.com>2019-10-01 17:32:03 +0300
committerAntti Hölttä <ahoelttae@luxoft.com>2019-10-02 07:19:27 +0000
commitcee44751135f41a90e1b436483e54c90edd4d20d (patch)
treeb9f544412fe799207e8db108abc4981c89513678 /plugin
parent42c0fba64e946181fa7c78f5b8f718d129371a33 (diff)
[cursormanagement] Removed unnecessary logs
Lots of unnecessary log messages where appearing in the console making it hard to read other important messages Task-number: AUTOSUITE-1256 Change-Id: I4f1a4339303040e6bc05d30c95d343e7d5379202 Reviewed-by: Antti Hölttä <ahoelttae@luxoft.com>
Diffstat (limited to 'plugin')
-rw-r--r--plugin/cursornavigation.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/plugin/cursornavigation.cpp b/plugin/cursornavigation.cpp
index 71ea2d8..2c4aebe 100644
--- a/plugin/cursornavigation.cpp
+++ b/plugin/cursornavigation.cpp
@@ -173,7 +173,6 @@ CursorNavigationAttached *CursorNavigation::qmlAttachedProperties(QObject *objec
QQuickItem *item = static_cast<QQuickItem *>(object);
- qWarning() << "Created a new CN attachment";
return new CursorNavigationAttached(item);
}
@@ -207,7 +206,6 @@ CursorNavigationAttached *CursorNavigation::cursorNavigationAttachment(QQuickIte
void CursorNavigation::setCursorOnItem(CursorNavigationAttached *item)
{
- qWarning() << "set cursor on item " << item << " , currentItem " << m_currentItem;
if (item != m_currentItem) {
if (m_currentItem) {
m_currentItem->setHasCursor(false);
@@ -216,10 +214,8 @@ void CursorNavigation::setCursorOnItem(CursorNavigationAttached *item)
if (item && item->acceptsCursor()) {
item->setHasCursor(true);
m_currentItem = item;
- qWarning() << "Set cursor to " << item->item();
m_currentItem->item()->forceActiveFocus();
} else {
- qWarning() << "Set cursor to NULL";
m_currentItem = nullptr;
}
}