From 70602bafd3cf3c1f2b3a909b003d313d6e64689a 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()); }