from here. Is not needed here. Is needed when sorting items inside
categories.
svn path=/trunk/KDE/kdebase/apps/; revision=677022
QString leftStr = leftData.toString();
QString rightStr = rightData.toString();
- // We don't care about case for building categories
- return naturalCompare(leftStr.toLower(), rightStr.toLower()) < 0;
+ // We don't care about case for building categories. We also don't
+ // want here to compare by a natural comparation
+ return leftStr.toLower() < rightStr.toLower();
}
else if (sortRole() == DolphinView::SortBySize) // If we are sorting by size
{