X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/blobdiff_plain/d7d4fb9d26773c2d729b49d71af10e1378381ff3..abf17941f7:/src/generalsettingspage.h diff --git a/src/generalsettingspage.h b/src/generalsettingspage.h index f65fb29cf..0cffc3f69 100644 --- a/src/generalsettingspage.h +++ b/src/generalsettingspage.h @@ -21,18 +21,17 @@ #define GENERALSETTINGSPAGE_H #include + +class DolphinMainWindow; class QLineEdit; class QRadioButton; class QCheckBox; -class DolphinMainWindow; /** * @brief Page for the 'General' settings of the Dolphin settings dialog. * * The general settings allow to set the home Url, the default view mode * and the split view mode. - * - * @author Peter Penz */ class GeneralSettingsPage : public SettingsPageBase { @@ -40,7 +39,6 @@ class GeneralSettingsPage : public SettingsPageBase public: GeneralSettingsPage(DolphinMainWindow* mainWindow, QWidget* parent); - virtual ~GeneralSettingsPage(); /** @see SettingsPageBase::applySettings */ @@ -52,11 +50,8 @@ private slots: void useDefaulLocation(); private: - DolphinMainWindow *m_mainWindow; + DolphinMainWindow* m_mainWindow; QLineEdit* m_homeUrl; - QRadioButton* m_iconsView; - QRadioButton* m_detailsView; - QRadioButton* m_previewsView; QCheckBox* m_startSplit; QCheckBox* m_startEditable; };