aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/editor/scripteditor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/editor/scripteditor.cpp')
-rw-r--r--src/modules/editor/scripteditor.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/modules/editor/scripteditor.cpp b/src/modules/editor/scripteditor.cpp
index 1f56c214c..7d62f2fc9 100644
--- a/src/modules/editor/scripteditor.cpp
+++ b/src/modules/editor/scripteditor.cpp
@@ -679,17 +679,19 @@ void KviScriptEditorSyntaxHighlighter::highlightBlock(const QString & szText)
// 'found matches' highlighting
KviScriptEditorWidget * pEditor = ((KviScriptEditorWidget *)textEdit());
QString szFind = pEditor->m_szFind;
+ debug("find %s",szFind.toUtf8().data());
+
if (!szFind.isEmpty())
{
- QRegExp regFind(szFind);
- index = szText.indexOf(regFind);
+ index = szText.indexOf(szFind);
+ int length=szFind.length();
while (index >= 0)
{
- int length = regFind.matchedLength();
setFormat(index, length, findFormat);
- index = szText.indexOf(regFind, index + length);
+ index = szText.indexOf(szFind,index + length);
}
}
+ debug("exit loop");
}