fixed update process

This commit is contained in:
Luis Ángel San Martín
2013-11-16 13:09:28 +01:00
parent 9b3085f8d1
commit e3ddde47b3
4 changed files with 45 additions and 6 deletions

View File

@ -255,3 +255,8 @@ bool naturalSortLessThanCIFileInfo(const QFileInfo & left,const QFileInfo & righ
{
return naturalSortLessThanCI(left.fileName(),right.fileName());
}
bool naturalSortLessThanCILibraryItem(LibraryItem * left, LibraryItem * right)
{
return naturalSortLessThanCI(left->name,right->name);
}