mirror of
https://github.com/FunKey-Project/RetroFE.git
synced 2026-03-01 22:37:59 +01:00
Removed commented code.
This commit is contained in:
parent
c55751a77a
commit
d66aa26868
@ -186,17 +186,11 @@ bool CollectionInfo::itemIsLess(Item *lhs, Item *rhs)
|
|||||||
void CollectionInfo::sortItems()
|
void CollectionInfo::sortItems()
|
||||||
{
|
{
|
||||||
std::sort( items.begin(), items.end(), itemIsLess );
|
std::sort( items.begin(), items.end(), itemIsLess );
|
||||||
// for(Playlists_T::iterator it = playlists.begin(); it != playlists.end(); it++)
|
|
||||||
// {
|
|
||||||
// std::sort(it->second->begin(), it->second->end(), itemIsLess);
|
|
||||||
// }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void CollectionInfo::sortPlaylists()
|
void CollectionInfo::sortPlaylists()
|
||||||
{
|
{
|
||||||
|
|
||||||
// std::vector<Item *> *allItems = playlists["all"];
|
|
||||||
std::vector<Item *> *allItems = &items;
|
std::vector<Item *> *allItems = &items;
|
||||||
std::vector<Item *> toSortItems;
|
std::vector<Item *> toSortItems;
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user