#ifndef DOLPHINSETTINGSDIALOG_H
#define DOLPHINSETTINGSDIALOG_H
-#include <KPageDialog>
#include <KActionCollection>
+#include <KPageDialog>
class QUrl;
class SettingsPageBase;
Q_OBJECT
public:
- explicit DolphinSettingsDialog(const QUrl& url, QWidget* parent = nullptr, KActionCollection* actions = {});
+ explicit DolphinSettingsDialog(const QUrl &url, QWidget *parent = nullptr, KActionCollection *actions = {});
~DolphinSettingsDialog() override;
- KPageWidgetItem* trashSettings;
+ KPageWidgetItem *trashSettings;
Q_SIGNALS:
void settingsChanged();
void restoreDefaults();
protected:
- void closeEvent(QCloseEvent* event) override;
+ void closeEvent(QCloseEvent *event) override;
private:
static SettingsPageBase *createTrashSettingsPage(QWidget *parent);
- QList<SettingsPageBase*> m_pages;
+ QList<SettingsPageBase *> m_pages;
bool m_unsavedChanges;
};