[pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci
This commit is contained in:
pre-commit-ci[bot]
2023-09-12 13:03:02 +00:00
committed by WandererFan
parent a207d11fa4
commit e92ed45df9
435 changed files with 2669 additions and 2645 deletions

View File

@@ -86,7 +86,7 @@ void PropertyRowHeights::Save(Base::Writer& writer) const
{
// Save row information
writer.Stream() << writer.ind() << "<RowInfo Count=\"" << size() << "\">" << std::endl;
writer.incInd();// indentation for 'RowInfo'
writer.incInd(); // indentation for 'RowInfo'
std::map<int, int>::const_iterator ri = begin();
while (ri != end()) {
@@ -94,7 +94,7 @@ void PropertyRowHeights::Save(Base::Writer& writer) const
<< ri->second << "\" />" << std::endl;
++ri;
}
writer.decInd();// indentation for 'RowInfo'
writer.decInd(); // indentation for 'RowInfo'
writer.Stream() << writer.ind() << "</RowInfo>" << std::endl;
}