diff options
| author | Chris Bessent <lost.dragonist@gmail.com> | 2020-01-06 05:17:01 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-01-06 05:17:01 -0700 |
| commit | dfa600996c49c1b23dca884c963dc917bd9cfc0a (patch) | |
| tree | c6def4277cc962822d0dcde71fa9148e050f693f /src/modlist.h | |
| parent | e69078e2399a88bda7bb9ffae7a3d57db9a4e9cf (diff) | |
| parent | d1a788dfad341b32235abc25c2ba1645f8be1ace (diff) | |
Merge pull request #954 from ModOrganizer2/Develop
Stage for release 2.2.2
Diffstat (limited to 'src/modlist.h')
| -rw-r--r-- | src/modlist.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/modlist.h b/src/modlist.h index 5ce32f6e..3626c50c 100644 --- a/src/modlist.h +++ b/src/modlist.h @@ -57,6 +57,7 @@ public: enum EColumn {
COL_NAME,
+ COL_CONFLICTFLAGS,
COL_FLAGS,
COL_CONTENT,
COL_CATEGORY,
@@ -66,8 +67,7 @@ public: COL_INSTALLTIME,
COL_PRIORITY,
COL_NOTES,
-
- COL_LASTCOLUMN = COL_NOTES
+ COL_LASTCOLUMN = COL_NOTES,
};
typedef boost::signals2::signal<void (const QString &, ModStates)> SignalModStateChanged;
@@ -289,6 +289,8 @@ private: QString getFlagText(ModInfo::EFlag flag, ModInfo::Ptr modInfo) const;
+ QString getConflictFlagText(ModInfo::EConflictFlag flag, ModInfo::Ptr modInfo) const;
+
static QString getColumnToolTip(int column);
QVariantList contentsToIcons(const std::vector<ModInfo::EContent> &content) const;
@@ -341,6 +343,7 @@ private: std::set<int> m_RequestIDs;
mutable bool m_Modified;
+ bool m_InNotifyChange;
QFontMetrics m_FontMetrics;
|
