summaryrefslogtreecommitdiffstats
path: root/application/groupview
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2015-02-10 20:50:01 +0100
committerPetr Mrázek <peterix@gmail.com>2015-04-12 20:57:18 +0200
commitd4d8cb48919eec22402c5ed88a48796b1ca5311b (patch)
treecbc6cb7417f8f538f351350e0f1c66453b3b7399 /application/groupview
parentd1ba972c596e38085c49208eee759302a57d1662 (diff)
downloadMultiMC-d4d8cb48919eec22402c5ed88a48796b1ca5311b.tar
MultiMC-d4d8cb48919eec22402c5ed88a48796b1ca5311b.tar.gz
MultiMC-d4d8cb48919eec22402c5ed88a48796b1ca5311b.tar.lz
MultiMC-d4d8cb48919eec22402c5ed88a48796b1ca5311b.tar.xz
MultiMC-d4d8cb48919eec22402c5ed88a48796b1ca5311b.zip
NOISSUE remove group sorting log spam
Diffstat (limited to 'application/groupview')
-rw-r--r--application/groupview/GroupedProxyModel.cpp9
1 files changed, 0 insertions, 9 deletions
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;
}
}