diff options
| author | LostDragonist <lost.dragonist@gmail.com> | 2019-05-03 21:32:33 -0500 |
|---|---|---|
| committer | LostDragonist <lost.dragonist@gmail.com> | 2019-05-03 21:32:33 -0500 |
| commit | 179a73857125ee604f42b0d5c2d765183c86d2c7 (patch) | |
| tree | b9b3f9d62bd5640de839d150a53ab8ef119dab9c /src/problemsdialog.h | |
| parent | e2b799bd6b5cfd51969fefd1dab5e5b1b7e5f81c (diff) | |
| parent | 907c5468424b48774f5da2a6b5f96f26590987b0 (diff) | |
Merge pull request #695 from ModOrganizer2/Develop
Stage for Release 2.2.0
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
|
