diff options
| author | Sandro Jäckel <sandro.jaeckel@gmail.com> | 2018-02-23 01:45:58 +0100 |
|---|---|---|
| committer | Sandro Jäckel <sandro.jaeckel@gmail.com> | 2018-02-23 01:45:58 +0100 |
| commit | ea6292168a6acd4c263913f0ccd7dd64daf4f5cf (patch) | |
| tree | 312024abbd7c3c100274f3a8031d49096480b654 /src/problemsdialog.h | |
| parent | 5e5c9c07291f6b09623d31c92b1fb61c4ede576e (diff) | |
Revert "Applied clang-format on source"
This reverts commit 5e5c9c07291f6b09623d31c92b1fb61c4ede576e.
Diffstat (limited to 'src/problemsdialog.h')
| -rw-r--r-- | src/problemsdialog.h | 30 |
1 files changed, 17 insertions, 13 deletions
diff --git a/src/problemsdialog.h b/src/problemsdialog.h index f009d5c9..24a69cdf 100644 --- a/src/problemsdialog.h +++ b/src/problemsdialog.h @@ -1,36 +1,40 @@ #ifndef PROBLEMSDIALOG_H
#define PROBLEMSDIALOG_H
+
#include <QDialog>
#include <QUrl>
#include <iplugindiagnose.h>
+
namespace Ui {
class ProblemsDialog;
}
-class ProblemsDialog : public QDialog {
- Q_OBJECT
+class ProblemsDialog : public QDialog
+{
+ Q_OBJECT
+
public:
- explicit ProblemsDialog(std::vector<MOBase::IPluginDiagnose*> diagnosePlugins, QWidget* parent = 0);
- ~ProblemsDialog();
-
- bool hasProblems() const;
+ explicit ProblemsDialog(std::vector<MOBase::IPluginDiagnose*> diagnosePlugins, QWidget *parent = 0);
+ ~ProblemsDialog();
+ bool hasProblems() const;
private:
- void runDiagnosis();
-private slots:
+ void runDiagnosis();
- void selectionChanged();
- void urlClicked(const QUrl& url);
+private slots:
- void startFix();
+ void selectionChanged();
+ void urlClicked(const QUrl &url);
+ void startFix();
private:
- Ui::ProblemsDialog* ui;
- std::vector<MOBase::IPluginDiagnose*> m_DiagnosePlugins;
+
+ Ui::ProblemsDialog *ui;
+ std::vector<MOBase::IPluginDiagnose *> m_DiagnosePlugins;
};
#endif // PROBLEMSDIALOG_H
|
