| 6 | #include <QJsonParseError> |
| 7 | |
| 8 | bool lessThan(const QList<QString> &left, const QList<QString> &right) |
| 9 | { |
| 10 | if ((left.count() > 0) && (right.count() > 0)) |
| 11 | return naturalSortLessThanCI(left.at(0), right.at(0)); |
| 12 | else |
| 13 | return true; |
| 14 | } |
| 15 | |
| 16 | VolumeComicsModel::VolumeComicsModel(QObject *parent) |
| 17 | : JSONModel(parent), numExtraRows(0) |
nothing calls this directly
no test coverage detected