┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphinmainwindow.cpp
diff options
context:
space:
mode:
authorMéven Car <[email protected]>2026-01-22 17:02:34 +0100
committerMéven Car <[email protected]>2026-01-22 17:03:09 +0100
commit3b89b43f097342bc76ab7b235f9649077a87deff (patch)
treefe41f01b4ca65e769d058a9356e029060266bdcc /src/dolphinmainwindow.cpp
parent1acd0dfe09a34817d8daf58db2c53b2262eec7b7 (diff)
clang-tidy: fix unecessary-value-param
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 dc3829d37..2ad1cc8e3 100644
--- a/src/dolphinmainwindow.cpp
+++ b/src/dolphinmainwindow.cpp
@@ -200,7 +200,7 @@ DolphinMainWindow::DolphinMainWindow()
connect(this, &DolphinMainWindow::urlChanged, m_remoteEncoding, &DolphinRemoteEncoding::slotAboutToOpenUrl);
m_disabledActionNotifier = new DisabledActionNotifier(this);
- connect(m_disabledActionNotifier, &DisabledActionNotifier::disabledActionTriggered, this, [this](const QAction *, QString reason) {
+ connect(m_disabledActionNotifier, &DisabledActionNotifier::disabledActionTriggered, this, [this](const QAction *, const QString &reason) {
m_activeViewContainer->showMessage(reason, KMessageWidget::Warning);
});