From b626da4e2c13f698e9930471edaa75a1cb5dbc48 Mon Sep 17 00:00:00 2001 From: David Schulz Date: Thu, 2 Jan 2025 08:56:19 +0100 Subject: [PATCH] Editor: fix typo Change-Id: I9abb2e3abb44753a86445d2aea37c97b5beeeb56 Reviewed-by: Christian Stenger --- src/plugins/texteditor/texteditor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/texteditor/texteditor.cpp b/src/plugins/texteditor/texteditor.cpp index 97b67e45248..51e9f52374e 100644 --- a/src/plugins/texteditor/texteditor.cpp +++ b/src/plugins/texteditor/texteditor.cpp @@ -5108,7 +5108,7 @@ void TextEditorWidgetPrivate::highlightSearchResults(const QTextBlock &block, co if (!m_find->inScope(start, end)) continue; - // check if the result is inside the visibale area for long blocks + // check if the result is inside the visible area for long blocks const QTextLine &startLine = block.layout()->lineForTextPosition(idx); const QTextLine &endLine = block.layout()->lineForTextPosition(idx + l);