From 82fca4e87ec6c065431b0396579091053a83ca15 Mon Sep 17 00:00:00 2001 From: Christian Stenger Date: Thu, 20 Mar 2025 06:41:43 +0100 Subject: [PATCH] Lua: Remove unused parameter Change-Id: Ib79967882e72e8e1d4b6f7b62c1673a0b0061057 Reviewed-by: Marcus Tillmanns --- src/plugins/lua/bindings/texteditor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/lua/bindings/texteditor.cpp b/src/plugins/lua/bindings/texteditor.cpp index bd42fb59cd2..15b8b097172 100644 --- a/src/plugins/lua/bindings/texteditor.cpp +++ b/src/plugins/lua/bindings/texteditor.cpp @@ -162,7 +162,7 @@ public: Core::EditorManager::instance(), &Core::EditorManager::editorCreated, this, - [this](Core::IEditor *editor, const Utils::FilePath &filePath) { + [this](Core::IEditor *editor) { auto textEditor = qobject_cast(editor); if (textEditor) emit editorCreated(textEditor);