GH-3490 sort instances by name is now aware of numbers

This commit is contained in:
Petr Mrázek
2021-10-25 21:43:00 +02:00
parent 040af58070
commit 85ecbad467
2 changed files with 8 additions and 1 deletions

View File

@@ -1,6 +1,7 @@
#pragma once
#include "groupview/GroupedProxyModel.h"
#include <QCollator>
/**
* A proxy model that is responsible for sorting instances into groups
@@ -13,4 +14,6 @@ public:
protected:
virtual bool subSortLessThan(const QModelIndex &left, const QModelIndex &right) const override;
private:
QCollator m_naturalSort;
};