Skip to content

Commit

Permalink
whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
silverqx committed Aug 13, 2024
1 parent 11ff6da commit 175b740
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/orm/utils/string.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,7 @@ QString String::stripTags(QString string)
QString::size_type posStart = 0;
QString::size_type from = 0;

while ((posStart = string.indexOf(LT_C, from, Qt::CaseInsensitive)) != -1
) {
while ((posStart = string.indexOf(LT_C, from, Qt::CaseInsensitive)) != -1) {
const auto posEnd = string.indexOf(GT_C, posStart + 1, Qt::CaseInsensitive);

// Nothing to do, the > char not found
Expand Down

0 comments on commit 175b740

Please sign in to comment.