Skip to content

Commit

Permalink
Add parentheses around complex operands.
Browse files Browse the repository at this point in the history
  • Loading branch information
przemek83 committed Dec 31, 2024
1 parent 8038544 commit afabe07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ImportOds.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -321,8 +321,8 @@ bool ImportOds::moveToSecondRow(const QString& sheetName, QuaZipFile& zipFile,

bool secondRow{false};
while ((!xmlStreamReader.atEnd()) &&
!((xmlStreamReader.qualifiedName() == TABLE_QUALIFIED_NAME) &&
xmlStreamReader.isEndElement()))
(!((xmlStreamReader.qualifiedName() == TABLE_QUALIFIED_NAME) &&
xmlStreamReader.isEndElement())))
{
if (isRowStart(xmlStreamReader))
{
Expand Down

0 comments on commit afabe07

Please sign in to comment.