NOISSUE allow user to sort mod list by clicking on column headers

This commit is contained in:
Petr Mrázek
2016-08-05 00:10:33 +02:00
parent b76d4573cd
commit cf0694a0cb
4 changed files with 12 additions and 34 deletions

View File

@ -104,13 +104,6 @@ public:
return mods;
}
private:
void internalSort(QList<Mod> & what);
struct OrderItem
{
QString id;
bool enabled = false;
};
private
slots:
void directoryChanged(QString path);
@ -120,8 +113,7 @@ signals:
protected:
QFileSystemWatcher *m_watcher;
bool is_watching;
bool is_watching = false;
QDir m_dir;
QString m_list_id;
QList<Mod> mods;
};