mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-05-02 14:57:59 +03:00
Forgot to add directory
This commit is contained in:
parent
062ff189a2
commit
d6e9cb114e
20 changed files with 2931 additions and 0 deletions
21
extern/shiny/Editor/PropertySortModel.hpp
vendored
Normal file
21
extern/shiny/Editor/PropertySortModel.hpp
vendored
Normal file
|
@ -0,0 +1,21 @@
|
|||
#ifndef SHINY_EDITOR_PROPERTYSORTMODEL_H
|
||||
#define SHINY_EDITOR_PROPERTYSORTMODEL_H
|
||||
|
||||
#include <QSortFilterProxyModel>
|
||||
|
||||
namespace sh
|
||||
{
|
||||
|
||||
class PropertySortModel : public QSortFilterProxyModel
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
PropertySortModel(QObject* parent);
|
||||
protected:
|
||||
bool lessThan(const QModelIndex &left, const QModelIndex &right) const;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue