void sortPointsForSafeMove(QVector<QPoint> *points, const QPoint &offset)
 {
     qSort(points->begin(), points->end(), LessOperator(offset));
 }
Example #2
0
 void sortPointsForSafeMove(QModelIndexList *points, const QPoint &offset)
 {
     qSort(points->begin(), points->end(), LessOperator(offset));
 }