summaryrefslogtreecommitdiff
path: root/src/modinforegular.h
diff options
context:
space:
mode:
authorLostDragonist <lost.dragonist@gmail.com>2018-12-08 10:37:46 -0600
committerLostDragonist <lost.dragonist@gmail.com>2018-12-08 10:44:46 -0600
commitc501b5cca081e1b3697904a3b4e1e236ea9c4e69 (patch)
tree01e2f84719dac045e5ebb57b6081ad9e6eeda5ce /src/modinforegular.h
parentc87d97de8c4e15c91f17ab35173ec6f22e80c8e5 (diff)
Add notes column to mod list
Diffstat (limited to 'src/modinforegular.h')
-rw-r--r--src/modinforegular.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/modinforegular.h b/src/modinforegular.h
index 78a6e58a..33b26998 100644
--- a/src/modinforegular.h
+++ b/src/modinforegular.h
@@ -91,6 +91,12 @@ public:
bool setName(const QString &name);
/**
+ * @brief changes the comments (manually set information displayed in the mod list) for this mod
+ * @param comments new comments
+ */
+ void setComments(const QString &comments);
+
+ /**
* @brief change the notes (manually set information) for this mod
* @param notes new notes
*/
@@ -280,6 +286,11 @@ public:
virtual QString getDescription() const;
/**
+ * @return comments for this mod
+ */
+ virtual QString comments() const;
+
+ /**
* @return manually set notes for this mod
*/
virtual QString notes() const;
@@ -353,6 +364,7 @@ private:
QString m_Name;
QString m_Path;
QString m_InstallationFile;
+ QString m_Comments;
QString m_Notes;
QString m_NexusDescription;
QString m_Repository;