summaryrefslogtreecommitdiffstats
path: root/application/groupview/GroupedProxyModel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'application/groupview/GroupedProxyModel.cpp')
-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;
}
}