Skip to content

Commit f6cedb8

Browse files
committed
more CI build errors
1 parent 684b56c commit f6cedb8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

QtSLiM/QtSLiMScriptTextEdit.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1738,7 +1738,7 @@ int64_t QtSLiMTextEdit::scoreForCandidateAsCompletionOfString(QString candidate,
17381738
// acceptable match, except for the very first character of base; WTF should match writeTempFile().
17391739

17401740
// loop through all matches, until we fail to find one
1741-
while (TRUE) {
1741+
while (true) {
17421742
int candidateMatchIndex = candidate.indexOf(stringToMatch, firstUnusedIndex);
17431743

17441744
if (candidateMatchIndex != -1)
@@ -1843,7 +1843,7 @@ int64_t QtSLiMTextEdit::scoreForCandidateAsCompletionOfString(QString candidate,
18431843
// "initializeTreeSeq()"; if the user completed on "it", initializeTreeSeq() is a good match.
18441844

18451845
// loop through all matches, until we fail to find one
1846-
while (TRUE) {
1846+
while (true) {
18471847
int uppercaseMatchIndex = candidate.indexOf(uppercaseStringToMatch, firstUnusedIndex);
18481848

18491849
if (uppercaseMatchIndex != -1)

0 commit comments

Comments
 (0)