┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphinmainwindow.cpp
diff options
context:
space:
mode:
authorElvis Angelaccio <[email protected]>2018-02-03 20:30:37 +0100
committerElvis Angelaccio <[email protected]>2018-02-03 20:30:37 +0100
commit4709626a9b4557e77f99ed15353e80ffa608c75c (patch)
treec6120893664d753d69d431213948ef5e1ebc04b2 /src/dolphinmainwindow.cpp
parent4112c38605ac5a35975abfa0ecacf65c546266e4 (diff)
Use new KStandardAction slot syntax
This was probably forgotten from commit 3bfdf0d2.
Diffstat (limited to 'src/dolphinmainwindow.cpp')
-rw-r--r--src/dolphinmainwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp
index 95b05785f..d3e2fd907 100644
--- a/src/dolphinmainwindow.cpp
+++ b/src/dolphinmainwindow.cpp
@@ -1198,7 +1198,7 @@ void DolphinMainWindow::setupActions()
KToggleAction* showMenuBar = KStandardAction::showMenubar(nullptr, nullptr, actionCollection());
connect(showMenuBar, &KToggleAction::triggered, // Fixes #286822
this, &DolphinMainWindow::toggleShowMenuBar, Qt::QueuedConnection);
- KStandardAction::preferences(this, SLOT(editSettings()), actionCollection());
+ KStandardAction::preferences(this, &DolphinMainWindow::editSettings, actionCollection());
// not in menu actions
QList<QKeySequence> nextTabKeys = KStandardShortcut::tabNext();