From 1f3133059e3c821e92dbaa6e3149dd59ce86c245 Mon Sep 17 00:00:00 2001 From: LostDragonist Date: Sat, 23 Mar 2019 21:21:51 -0500 Subject: Prevent diagnose plugins that return false for isActive from reporting notifications --- src/problemsdialog.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/problemsdialog.h') diff --git a/src/problemsdialog.h b/src/problemsdialog.h index 24a69cdf..a48a5de1 100644 --- a/src/problemsdialog.h +++ b/src/problemsdialog.h @@ -15,9 +15,9 @@ class ProblemsDialog; class ProblemsDialog : public QDialog { Q_OBJECT - + public: - explicit ProblemsDialog(std::vector diagnosePlugins, QWidget *parent = 0); + explicit ProblemsDialog(std::vector pluginObjects, QWidget *parent = 0); ~ProblemsDialog(); bool hasProblems() const; @@ -34,7 +34,7 @@ private slots: private: Ui::ProblemsDialog *ui; - std::vector m_DiagnosePlugins; + std::vector m_PluginObjects; }; #endif // PROBLEMSDIALOG_H -- cgit v1.3.1