X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/blobdiff_plain/f65b0899c3666561cafac14f67ab0bb8a5bfa00a..38c34eeca:/src/settings/general/previewssettingspage.h diff --git a/src/settings/general/previewssettingspage.h b/src/settings/general/previewssettingspage.h index 1e61aa24d..2c3e4dfef 100644 --- a/src/settings/general/previewssettingspage.h +++ b/src/settings/general/previewssettingspage.h @@ -7,6 +7,8 @@ #ifndef PREVIEWSSETTINGSPAGE_H #define PREVIEWSSETTINGSPAGE_H +#include + #include "settings/settingspagebase.h" class QSpinBox; @@ -21,7 +23,7 @@ class PreviewsSettingsPage : public SettingsPageBase Q_OBJECT public: - explicit PreviewsSettingsPage(QWidget* parent); + explicit PreviewsSettingsPage(QWidget *parent); ~PreviewsSettingsPage() override; /** @@ -35,10 +37,12 @@ public: void restoreDefaults() override; protected: - void showEvent(QShowEvent* event) override; + void showEvent(QShowEvent *event) override; private Q_SLOTS: - void configureService(const QModelIndex& index); +#if KIOWIDGETS_BUILD_DEPRECATED_SINCE(5, 87) + void configureService(const QModelIndex &index); +#endif private: void loadPreviewPlugins(); @@ -48,8 +52,8 @@ private: bool m_initialized; QListView *m_listView; QStringList m_enabledPreviewPlugins; - QSpinBox* m_localFileSizeBox; - QSpinBox* m_remoteFileSizeBox; + QSpinBox *m_localFileSizeBox; + QSpinBox *m_remoteFileSizeBox; }; #endif