Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Utilities
Kate
Commits
b1c8ee6d
Commit
b1c8ee6d
authored
Aug 27, 2022
by
Christoph Cullmann
🍨
Browse files
explicit int conversion
parent
22539e58
Pipeline
#223277
failed with stage
in 4 minutes and 48 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
addons/search/SearchOpenFiles.cpp
View file @
b1c8ee6d
...
...
@@ -122,7 +122,7 @@ int SearchOpenFiles::searchSingleLineRegExp(KTextEditor::Document *doc, const QR
match
.
captured
(),
postContext
,
QString
(),
KTextEditor
::
Range
{
line
,
column
,
line
,
column
+
match
.
capturedLength
()},
KTextEditor
::
Range
{
line
,
column
,
line
,
int
(
column
+
match
.
capturedLength
()
)
},
true
,
true
});
match
=
regExp
.
match
(
doc
->
line
(
line
),
column
+
match
.
capturedLength
());
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment