┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/generalviewsettingspage.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/generalviewsettingspage.h')
-rw-r--r--src/generalviewsettingspage.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/generalviewsettingspage.h b/src/generalviewsettingspage.h
index 8f6f7ada6..0d065a572 100644
--- a/src/generalviewsettingspage.h
+++ b/src/generalviewsettingspage.h
@@ -23,20 +23,19 @@
#include <kvbox.h>
+class DolphinMainWindow;
class QRadioButton;
/**
* @brief Represents the page from the Dolphin Settings which allows
* to modify general settings for the view modes.
- *
- * @author Peter Penz <[email protected]>
*/
class GeneralViewSettingsPage : public KVBox
{
Q_OBJECT
public:
- GeneralViewSettingsPage(QWidget* parent);
+ GeneralViewSettingsPage(DolphinMainWindow* mainWindow, QWidget* parent);
virtual ~GeneralViewSettingsPage();
/**
@@ -47,6 +46,7 @@ public:
void applySettings();
private:
+ DolphinMainWindow* m_mainWindow;
QRadioButton* m_localProps;
QRadioButton* m_globalProps;
};