From e0ac8b61fb907ac19f9bebf01cb5be17d4c88ba8 Mon Sep 17 00:00:00 2001 From: Peter Penz Date: Sun, 8 Apr 2012 23:15:32 +0200 Subject: 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 --- src/settings/kcm/kcmdolphingeneral.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/settings/kcm/kcmdolphingeneral.cpp') 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 #include -#include +#include #include #include @@ -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); } -- cgit v1.3