diff options
| author | Tannin <devnull@localhost> | 2013-04-12 15:31:47 +0200 |
|---|---|---|
| committer | Tannin <devnull@localhost> | 2013-04-12 15:31:47 +0200 |
| commit | 4fbfc9aa54ed4499f54eb7b3cd942337f6b49e58 (patch) | |
| tree | 43008c44a7adf429abc45d5a81537a118fcf6fa7 /src/modlistsortproxy.h | |
| parent | a47d9717884953b18b4b29e596d3e5a7d766e56e (diff) | |
- multi-selection in category window
- profile loading is now slightly more forgiving
Diffstat (limited to 'src/modlistsortproxy.h')
| -rw-r--r-- | src/modlistsortproxy.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modlistsortproxy.h b/src/modlistsortproxy.h index 8b86b222..d615c430 100644 --- a/src/modlistsortproxy.h +++ b/src/modlistsortproxy.h @@ -36,7 +36,7 @@ public: void setProfile(Profile *profile); - void setCategoryFilter(int category); + void setCategoryFilter(const std::vector<int> &categories); virtual Qt::ItemFlags flags(const QModelIndex &modelIndex) const; virtual bool dropMimeData(const QMimeData *data, Qt::DropAction action, @@ -79,7 +79,7 @@ private: Profile *m_Profile; - int m_CategoryFilter; + std::vector<int> m_CategoryFilter; std::bitset<ModList::COL_LASTCOLUMN + 1> m_EnabledColumns; QString m_CurrentFilter; |
