forked from qt-creator/qt-creator
		
	ClangTools: Pass context object to lambda connections
Remove some unneeded lambda () brackets. Change-Id: I502eb5cd89505fb77c02abf44b7ce19541a8ac2f Reviewed-by: Christian Kandeler <christian.kandeler@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
This commit is contained in:
		@@ -483,7 +483,7 @@ void ClangModelManagerSupport::updateLanguageClient(ProjectExplorer::Project *pr
 | 
			
		||||
        return;
 | 
			
		||||
    const auto generatorWatcher = new QFutureWatcher<GenerateCompilationDbResult>;
 | 
			
		||||
    connect(generatorWatcher, &QFutureWatcher<GenerateCompilationDbResult>::finished,
 | 
			
		||||
            [this, project, projectInfo, jsonDbDir, generatorWatcher] {
 | 
			
		||||
            this, [this, project, projectInfo, jsonDbDir, generatorWatcher] {
 | 
			
		||||
        generatorWatcher->deleteLater();
 | 
			
		||||
        if (!isProjectDataUpToDate(project, projectInfo, jsonDbDir))
 | 
			
		||||
            return;
 | 
			
		||||
@@ -781,7 +781,7 @@ void addFixItsActionsToMenu(QMenu *menu, const TextEditor::QuickFixOperations &f
 | 
			
		||||
{
 | 
			
		||||
    for (const TextEditor::QuickFixOperation::Ptr &fixItOperation : fixItOperations) {
 | 
			
		||||
        QAction *action = menu->addAction(fixItOperation->description());
 | 
			
		||||
        QObject::connect(action, &QAction::triggered, [fixItOperation]() {
 | 
			
		||||
        QObject::connect(action, &QAction::triggered, [fixItOperation] {
 | 
			
		||||
            fixItOperation->perform();
 | 
			
		||||
        });
 | 
			
		||||
    }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user