From cc499488dbab9167870e6088f9a1793f95894c79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Mr=C3=A1zek?= Date: Sun, 6 Jul 2014 11:15:15 +0200 Subject: Fix liteloader, some cleanups. --- gui/groupview/GroupView.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'gui/groupview') diff --git a/gui/groupview/GroupView.cpp b/gui/groupview/GroupView.cpp index 7094b34c..69a06fd3 100644 --- a/gui/groupview/GroupView.cpp +++ b/gui/groupview/GroupView.cpp @@ -3,7 +3,6 @@ #include #include #include -#include #include #include #include @@ -12,6 +11,7 @@ #include #include "Group.h" +#include "logger/QsLog.h" template bool listsIntersect(const QList &l1, const QList t2) { @@ -917,10 +917,10 @@ QModelIndex GroupView::moveCursor(QAbstractItemView::CursorAction cursorAction, auto current = currentIndex(); if(!current.isValid()) { - qDebug() << "model row: invalid"; + QLOG_DEBUG() << "model row: invalid"; return current; } - qDebug() << "model row: " << current.row(); + QLOG_DEBUG() << "model row: " << current.row(); auto cat = category(current); int i = m_groups.indexOf(cat); if(i >= 0) @@ -934,11 +934,11 @@ QModelIndex GroupView::moveCursor(QAbstractItemView::CursorAction cursorAction, break; beginning_row += group->numRows(); } - qDebug() << "category: " << real_group->text; + QLOG_DEBUG() << "category: " << real_group->text; QPair pos = categoryInternalPosition(current); int row = beginning_row + pos.second; - qDebug() << "row: " << row; - qDebug() << "column: " << pos.first; + QLOG_DEBUG() << "row: " << row; + QLOG_DEBUG() << "column: " << pos.first; } return current; } -- cgit v1.2.3