diff options
| author | LostDragonist <lost.dragonist@gmail.com> | 2019-01-22 17:57:46 -0600 |
|---|---|---|
| committer | LostDragonist <lost.dragonist@gmail.com> | 2019-01-22 17:57:46 -0600 |
| commit | 0ab87850c4cb405b93c592e455a9d052ec84f66f (patch) | |
| tree | 5fe08b611e70a3f0bff446dd3632de3acb1f33fb /src/modlist.h | |
| parent | 952a9c2dedf63e4b9b182b7dce379c4fe7898355 (diff) | |
| parent | 5800f2b7b32b564352b029b2f9a5fe27d05ee14c (diff) | |
Merge remote-tracking branch 'remotes/origin/Develop' into archive_conflicts_2
Diffstat (limited to 'src/modlist.h')
| -rw-r--r-- | src/modlist.h | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/src/modlist.h b/src/modlist.h index 49627d68..402d662f 100644 --- a/src/modlist.h +++ b/src/modlist.h @@ -236,9 +236,18 @@ signals: * @param role role of the field that changed
* @note this signal must only be emitted if the row really did change.
* Slots handling this signal therefore do not have to verify that a change has happened
- * @note this signal is currently only used in tutorials
**/
- void modlist_changed(const QModelIndex &index, int role);
+ void modlistChanged(const QModelIndex &index, int role);
+
+ /**
+ * @brief emitted whenever multiple row sin the list has changed
+ *
+ * @param indicies the list of indicies of the changed field
+ * @param role role of the field that changed
+ * @note this signal must only be emitted if the row really did change.
+ * Slots handling this signal therefore do not have to verify that a change has happened
+ **/
+ void modlistChanged(const QModelIndexList &indicies, int role);
/**
* @brief emitted to have all selected mods deleted
|
