diff options
| author | LostDragonist <lost.dragonist@gmail.com> | 2019-03-23 21:21:51 -0500 |
|---|---|---|
| committer | LostDragonist <lost.dragonist@gmail.com> | 2019-03-23 21:21:51 -0500 |
| commit | 1f3133059e3c821e92dbaa6e3149dd59ce86c245 (patch) | |
| tree | 64b5cb49486d23e200ba3f25bc56ed10855437b4 /src/problemsdialog.h | |
| parent | ff7fd68c0b8f861ac294a3876485c59de94a67cd (diff) | |
Prevent diagnose plugins that return false for isActive from reporting notifications
Diffstat (limited to 'src/problemsdialog.h')
| -rw-r--r-- | src/problemsdialog.h | 6 |
1 files changed, 3 insertions, 3 deletions
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<MOBase::IPluginDiagnose*> diagnosePlugins, QWidget *parent = 0);
+ explicit ProblemsDialog(std::vector<QObject*> pluginObjects, QWidget *parent = 0);
~ProblemsDialog();
bool hasProblems() const;
@@ -34,7 +34,7 @@ private slots: private:
Ui::ProblemsDialog *ui;
- std::vector<MOBase::IPluginDiagnose *> m_DiagnosePlugins;
+ std::vector<QObject *> m_PluginObjects;
};
#endif // PROBLEMSDIALOG_H
|
