┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/settings/kcm/kcmdolphinnavigation.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/settings/kcm/kcmdolphinnavigation.h')
-rw-r--r--src/settings/kcm/kcmdolphinnavigation.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/settings/kcm/kcmdolphinnavigation.h b/src/settings/kcm/kcmdolphinnavigation.h
deleted file mode 100644
index 97d7bff85..000000000
--- a/src/settings/kcm/kcmdolphinnavigation.h
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
- * SPDX-FileCopyrightText: 2009 Peter Penz <[email protected]>
- *
- * SPDX-License-Identifier: GPL-2.0-or-later
- */
-
-#ifndef KCMDOLPHINNAVIGATION_H
-#define KCMDOLPHINNAVIGATION_H
-
-#include <KCModule>
-
-class NavigationSettingsPage;
-
-/**
- * @brief Allow to configure the Dolphin navigation.
- */
-class DolphinNavigationConfigModule : public KCModule
-{
- Q_OBJECT
-
-public:
- DolphinNavigationConfigModule(QWidget *parent, const QVariantList &args);
- ~DolphinNavigationConfigModule() override;
-
- void save() override;
- void defaults() override;
-
-private:
- NavigationSettingsPage *m_navigation;
-};
-
-#endif