┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/kcm
diff options
context:
space:
mode:
authorAlessandro Diaferia <[email protected]>2009-04-16 18:55:19 +0000
committerAlessandro Diaferia <[email protected]>2009-04-16 18:55:19 +0000
commitf2d889b349cb060a44f610982972ac2d82b57426 (patch)
treebecda1db6388dc9b0762ea7ef36d4eddab3bb58c /src/kcm
parentb842968e4aa23332fb29687ee52611716b0b321c (diff)
* share Context Menu page settings from dolphin with konqueror
* Make KonqPopupMenu aware of the CopyTo/MoveTo settings from konqueror and dolphin svn path=/trunk/KDE/kdebase/apps/; revision=955015
Diffstat (limited to 'src/kcm')
-rw-r--r--src/kcm/kcmdolphingeneral.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/kcm/kcmdolphingeneral.cpp b/src/kcm/kcmdolphingeneral.cpp
index 5f8b96304..4c0de517c 100644
--- a/src/kcm/kcmdolphingeneral.cpp
+++ b/src/kcm/kcmdolphingeneral.cpp
@@ -21,6 +21,7 @@
#include "settings/behaviorsettingspage.h"
#include "settings/previewssettingspage.h"
+#include "settings/contextmenusettingspage.h"
#include <ktabwidget.h>
#include <kdialog.h>
@@ -60,8 +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()));
+
m_pages.append(behaviorPage);
m_pages.append(previewsPage);
+ m_pages.append(contextMenuPage);
topLayout->addWidget(tabWidget, 0, 0);
}