From 0be137752d5fddb7091c763a130432a84f5ffd07 Mon Sep 17 00:00:00 2001 From: Alexandru Fikl Date: Sun, 10 Mar 2024 20:44:13 +0200 Subject: [PATCH] mark unused variables --- app/tikzktexteditorcompletion.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/tikzktexteditorcompletion.cpp b/app/tikzktexteditorcompletion.cpp index 050e338..d6d1880 100644 --- a/app/tikzktexteditorcompletion.cpp +++ b/app/tikzktexteditorcompletion.cpp @@ -87,6 +87,9 @@ void TikzKTextEditorCompletion::completionInvoked( KTextEditor::View *view, const KTextEditor::Range &range, KTextEditor::CodeCompletionModel::InvocationType it) { + Q_UNUSED(view); + Q_UNUSED(range); + Q_UNUSED(it); setRowCount(m_matches.rowCount()); }