]> cloud.milkyroute.net Git - dolphin.git/blobdiff - src/generalsettingspage.h
Dolphin is now a KUniqueApplication. A lot of thanks go to Oscar Blumberg, who submit...
[dolphin.git] / src / generalsettingspage.h
index f65fb29cff9c6203f0643a4962440fff1c1d9ec1..0cffc3f6970b1944bd89bdcff225b14f3c4d7b14 100644 (file)
 #define GENERALSETTINGSPAGE_H
 
 #include <settingspagebase.h>
+
+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 <peter.penz@gmx.at>
  */
 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;
+    DolphinMainWindowm_mainWindow;
     QLineEdit* m_homeUrl;
-    QRadioButton* m_iconsView;
-    QRadioButton* m_detailsView;
-    QRadioButton* m_previewsView;
     QCheckBox* m_startSplit;
     QCheckBox* m_startEditable;
 };