]> cloud.milkyroute.net Git - dolphin.git/blobdiff - src/settings/general/previewssettingspage.h
Remove deprecated ConfigurePreviewPluginDialog
[dolphin.git] / src / settings / general / previewssettingspage.h
index 606b43cba74e71136369753461919c8e57083816..d6d22ae218d95dd2e63d025fc9878519b426443c 100644 (file)
@@ -7,6 +7,8 @@
 #ifndef PREVIEWSSETTINGSPAGE_H
 #define PREVIEWSSETTINGSPAGE_H
 
+#include <kiowidgets_export.h>
+
 #include "settings/settingspagebase.h"
 
 class QSpinBox;
@@ -21,7 +23,7 @@ class PreviewsSettingsPage : public SettingsPageBase
     Q_OBJECT
 
 public:
-    explicit PreviewsSettingsPage(QWidgetparent);
+    explicit PreviewsSettingsPage(QWidget *parent);
     ~PreviewsSettingsPage() override;
 
     /**
@@ -35,10 +37,9 @@ public:
     void restoreDefaults() override;
 
 protected:
-    void showEvent(QShowEventevent) override;
+    void showEvent(QShowEvent *event) override;
 
-private slots:
-    void configureService(const QModelIndex& index);
+private Q_SLOTS:
 
 private:
     void loadPreviewPlugins();
@@ -48,8 +49,8 @@ private:
     bool m_initialized;
     QListView *m_listView;
     QStringList m_enabledPreviewPlugins;
-    QSpinBoxm_localFileSizeBox;
-    QSpinBoxm_remoteFileSizeBox;
+    QSpinBox *m_localFileSizeBox;
+    QSpinBox *m_remoteFileSizeBox;
 };
 
 #endif