summaryrefslogtreecommitdiff
path: root/src/modlistview.h
diff options
context:
space:
mode:
authorJonathan Feenstra <26406078+JonathanFeenstra@users.noreply.github.com>2025-01-02 08:52:38 +0100
committerGitHub <noreply@github.com>2025-01-02 08:52:38 +0100
commitf8340e16201c214eef5327c4e810432e12b23805 (patch)
tree88814d5d1d5d8413adc72e4e83990ed986e6a144 /src/modlistview.h
parent110014bf5eb1df045790204836e8d0d44fcea1e2 (diff)
Highlight mods that contain selected files in data tab (#2179)
Diffstat (limited to 'src/modlistview.h')
-rw-r--r--src/modlistview.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modlistview.h b/src/modlistview.h
index f4b4e398..364e044c 100644
--- a/src/modlistview.h
+++ b/src/modlistview.h
@@ -138,7 +138,7 @@ public slots:
// set highligth markers
//
- void setHighlightedMods(const std::vector<unsigned int>& pluginIndices);
+ void setHighlightedMods(const std::set<QString>& modNames);
protected:
// map from/to the view indexes to the model
@@ -215,7 +215,7 @@ private: // private structures
QPushButton* clearFilters;
QComboBox* filterSeparators;
- // the plugin list (for highligths)
+ // the plugin list (for highlights)
PluginListView* pluginList;
};
@@ -265,7 +265,7 @@ private: // private functions
void onModInstalled(const QString& modName);
void onModFilterActive(bool filterActive);
- // refresh the overwrite markers and the highligthed plugins from
+ // refresh the overwrite markers and the highlighted plugins from
// the current selection
//
void refreshMarkersAndPlugins();