┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/settings/kcm/kcmdolphingeneral.cpp
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2012-04-08 23:15:32 +0200
committerPeter Penz <[email protected]>2012-04-08 23:18:20 +0200
commite0ac8b61fb907ac19f9bebf01cb5be17d4c88ba8 (patch)
tree3774c1753847d346879590c9339d9459e2e8863c /src/settings/kcm/kcmdolphingeneral.cpp
parent05082aed16cdf7e511d9c97d0cf07e270af493e5 (diff)
Layout improvements for settings
- Handle 'Context Menu' settings as part of the services - Handle 'Version Control' settings as part of the services - Move the confirmations-settings into own tab - Use combobox for view-property settings - A lot of minor spacing cleanups
Diffstat (limited to 'src/settings/kcm/kcmdolphingeneral.cpp')
-rw-r--r--src/settings/kcm/kcmdolphingeneral.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/settings/kcm/kcmdolphingeneral.cpp b/src/settings/kcm/kcmdolphingeneral.cpp
index b803c98cf..26cb580f0 100644
--- a/src/settings/kcm/kcmdolphingeneral.cpp
+++ b/src/settings/kcm/kcmdolphingeneral.cpp
@@ -27,7 +27,7 @@
#include <settings/general/behaviorsettingspage.h>
#include <settings/general/previewssettingspage.h>
-#include <settings/general/contextmenusettingspage.h>
+#include <settings/general/confirmationssettingspage.h>
#include <QDir>
#include <QVBoxLayout>
@@ -61,14 +61,14 @@ DolphinGeneralConfigModule::DolphinGeneralConfigModule(QWidget* parent, const QV
tabWidget->addTab(previewsPage, i18nc("@title:tab Previews settings", "Previews"));
connect(previewsPage, SIGNAL(changed()), this, SLOT(changed()));
- // initialize 'Context Menu' tab
- ContextMenuSettingsPage *contextMenuPage = new ContextMenuSettingsPage(tabWidget);
- tabWidget->addTab(contextMenuPage, i18nc("@title:tab Context Menu settings", "Context Menu"));
- connect(contextMenuPage, SIGNAL(changed()), this, SLOT(changed()));
+ // initialize 'Confirmations' tab
+ ConfirmationsSettingsPage* confirmationsPage = new ConfirmationsSettingsPage(tabWidget);
+ tabWidget->addTab(confirmationsPage, i18nc("@title:tab Confirmations settings", "Confirmations"));
+ connect(confirmationsPage, SIGNAL(changed()), this, SLOT(changed()));
m_pages.append(behaviorPage);
m_pages.append(previewsPage);
- m_pages.append(contextMenuPage);
+ m_pages.append(confirmationsPage);
topLayout->addWidget(tabWidget, 0, 0);
}