diff options
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;
|
