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
Konsole
Commits
4621bd88
Commit
4621bd88
authored
Jan 14, 2022
by
Kurt Hindenburg
Browse files
avoid copy in for loop
parent
0739e77b
Pipeline
#124542
failed with stage
in 2 minutes and 1 second
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/autotests/ScreenTest.cpp
View file @
4621bd88
...
...
@@ -41,7 +41,7 @@ void ScreenTest::testBlockSelection()
const
QString
reallyBigTextForReflow
=
QStringLiteral
(
"abcd efgh ijkl mnop qrst uvxz ABCD EFGH IJKL MNOP QRST UVXZ"
);
for
(
const
auto
c
:
reallyBigTextForReflow
)
{
for
(
const
QChar
&
c
:
reallyBigTextForReflow
)
{
screen
.
displayCharacter
(
c
.
toLatin1
());
}
...
...
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