X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/blobdiff_plain/6f1a1d74074565ba7a290c496fde908d1dc0d8ff..87e8d0ba:/src/settings/kcm/kcmdolphinviewmodes.h diff --git a/src/settings/kcm/kcmdolphinviewmodes.h b/src/settings/kcm/kcmdolphinviewmodes.h index fb246d0af..c3775adff 100644 --- a/src/settings/kcm/kcmdolphinviewmodes.h +++ b/src/settings/kcm/kcmdolphinviewmodes.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2008 by Peter Penz * + * Copyright (C) 2008 by Peter Penz * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -22,7 +22,7 @@ #include -class ViewSettingsPageBase; +class ViewSettingsTab; /** * @brief Allow to configure the Dolphin views. @@ -33,16 +33,19 @@ class DolphinViewModesConfigModule : public KCModule public: DolphinViewModesConfigModule(QWidget* parent, const QVariantList& args); - virtual ~DolphinViewModesConfigModule(); + ~DolphinViewModesConfigModule() override; - virtual void save(); - virtual void defaults(); + void save() override; + void defaults() override; private: void reparseConfiguration(); +private Q_SLOTS: + void viewModeChanged(); + private: - QList m_pages; + QList m_tabs; }; #endif