summaryrefslogtreecommitdiff
path: root/src/plugins/perforce
diff options
context:
space:
mode:
authorJarek Kobus <jaroslaw.kobus@qt.io>2022-12-07 20:48:38 +0100
committerJarek Kobus <jaroslaw.kobus@qt.io>2022-12-07 21:54:39 +0000
commit0313470db0d5333ea5eda2da81e15c682f3ab981 (patch)
tree85173b7a0e028ad134dbd89fe0fe478678b1ad0e /src/plugins/perforce
parent0d74be319af9425d6fba12a2f06cd3bc1c6ef28f (diff)
downloadqt-creator-0313470db0d5333ea5eda2da81e15c682f3ab981.tar.gz
VcsBase: Pass context object to lambda connections
Remove some unneeded lambda () brackets. Change-Id: I20e43625793401544e86efb627f5921c395026bb Reviewed-by: Orgad Shaneh <orgads@gmail.com> Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
Diffstat (limited to 'src/plugins/perforce')
-rw-r--r--src/plugins/perforce/perforceplugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/perforce/perforceplugin.cpp b/src/plugins/perforce/perforceplugin.cpp
index f588b57af5..1dba20944a 100644
--- a/src/plugins/perforce/perforceplugin.cpp
+++ b/src/plugins/perforce/perforceplugin.cpp
@@ -553,7 +553,7 @@ PerforcePluginPrivate::PerforcePluginPrivate()
connect(m_filelogAction, &QAction::triggered, this, &PerforcePluginPrivate::filelogFile);
perforceContainer->addAction(command);
- QObject::connect(&m_settings, &AspectContainer::applied, [this] {
+ QObject::connect(&m_settings, &AspectContainer::applied, this, [this] {
m_settings.clearTopLevel();
applySettings();
});