mirror of
https://github.com/YACReader/yacreader
synced 2025-07-19 05:24:57 -04:00
Eliminate qsort, use std::sort
This commit is contained in:
@ -41,7 +41,7 @@ void VolumeComicsModel::load(const QString &json)
|
||||
_data.push_back(l);
|
||||
}
|
||||
|
||||
qSort(_data.begin(), _data.end(), lessThan);
|
||||
std::sort(_data.begin(), _data.end(), lessThan);
|
||||
}
|
||||
|
||||
/*void VolumeComicsModel::load(const QStringList &jsonList)
|
||||
|
Reference in New Issue
Block a user