#ifndef PREVIEWSSETTINGSPAGE_H
#define PREVIEWSSETTINGSPAGE_H
-
#include <kiowidgets_export.h>
#include "settings/settingspagebase.h"
Q_OBJECT
public:
- explicit PreviewsSettingsPage(QWidget* parent);
+ explicit PreviewsSettingsPage(QWidget *parent);
~PreviewsSettingsPage() override;
/**
void restoreDefaults() override;
protected:
- void showEvent(QShowEvent* event) override;
+ void showEvent(QShowEvent *event) override;
private Q_SLOTS:
-#if KIOWIDGETS_BUILD_DEPRECATED_SINCE(5, 87)
- void configureService(const QModelIndex& index);
-#endif
private:
void loadPreviewPlugins();
bool m_initialized;
QListView *m_listView;
QStringList m_enabledPreviewPlugins;
- QSpinBox* m_localFileSizeBox;
- QSpinBox* m_remoteFileSizeBox;
+ QSpinBox *m_localFileSizeBox;
+ QSpinBox *m_remoteFileSizeBox;
};
#endif