diff options
| author | Elvis Angelaccio <[email protected]> | 2018-02-03 20:30:37 +0100 |
|---|---|---|
| committer | Elvis Angelaccio <[email protected]> | 2018-02-03 20:30:37 +0100 |
| commit | 4709626a9b4557e77f99ed15353e80ffa608c75c (patch) | |
| tree | c6120893664d753d69d431213948ef5e1ebc04b2 /src | |
| parent | 4112c38605ac5a35975abfa0ecacf65c546266e4 (diff) | |
Use new KStandardAction slot syntax
This was probably forgotten from commit 3bfdf0d2.
Diffstat (limited to 'src')
| -rw-r--r-- | src/dolphinmainwindow.cpp | 2 |
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(); |
