Skip to content

Commit 1735687

Browse files
style: format codes
1 parent 50e8d73 commit 1735687

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/addtestcaseswizard.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,8 +175,8 @@ auto AddTestCasesWizard::getMatchedPart(const QString &str, const QString &patte
175175
#if (QT_VERSION >= QT_VERSION_CHECK(5, 15, 0))
176176
regExp = QRegularExpression::anchoredPattern(regExp);
177177
if (QRegularExpression(regExp).match(str.mid(i, j - i + 1)).hasMatch()) {
178-
if (QRegularExpression(QRegularExpression::anchoredPattern(
179-
getFullRegExp(pattern.mid(pos + 3))))
178+
if (QRegularExpression(
179+
QRegularExpression::anchoredPattern(getFullRegExp(pattern.mid(pos + 3))))
180180
.match(str.mid(j + 1))
181181
.hasMatch()) {
182182
result[index] = str.mid(i, j - i + 1);

0 commit comments

Comments
 (0)