From 175b740bf74e7d825b534cfbba96dc52580b2af8 Mon Sep 17 00:00:00 2001 From: silverqx Date: Wed, 14 Aug 2024 00:51:30 +0200 Subject: [PATCH] whitespace --- src/orm/utils/string.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/orm/utils/string.cpp b/src/orm/utils/string.cpp index 164e163ca..3b6637891 100644 --- a/src/orm/utils/string.cpp +++ b/src/orm/utils/string.cpp @@ -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