From d4d8cb48919eec22402c5ed88a48796b1ca5311b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Mr=C3=A1zek?= Date: Tue, 10 Feb 2015 20:50:01 +0100 Subject: NOISSUE remove group sorting log spam --- application/groupview/GroupedProxyModel.cpp | 9 --------- 1 file changed, 9 deletions(-) (limited to 'application/groupview/GroupedProxyModel.cpp') diff --git a/application/groupview/GroupedProxyModel.cpp b/application/groupview/GroupedProxyModel.cpp index a45c5ae9..81f0a0c3 100644 --- a/application/groupview/GroupedProxyModel.cpp +++ b/application/groupview/GroupedProxyModel.cpp @@ -19,19 +19,10 @@ bool GroupedProxyModel::lessThan(const QModelIndex &left, const QModelIndex &rig { // FIXME: real group sorting happens in GroupView::updateGeometries(), see LocaleString auto result = leftCategory.localeAwareCompare(rightCategory); - if(result < 0) - { - qDebug() << leftCategory << "<" << rightCategory; - } if(result == 0) { - qDebug() << leftCategory << "=" << rightCategory; return subSortLessThan(left, right); } - if(result > 0) - { - qDebug() << leftCategory << ">" << rightCategory; - } return result < 0; } } -- cgit v1.2.3