Как отсортировать QList объектов QDateTime * по значению объекта QDateTime?
Вы можете использовать qSort со своей собственной функцией сравнения:
qSort
#include <QtAlgorithms> bool dtcomp(QDateTime* left, QDateTime *right) { return *left < *right; } QList<DateTime*> dtlist = ...; qSort(dtlist.begin(), dtlist.end(), dtcomp);