indentation

Signed-off-by: Ivailo Monev <xakepa10@laimg.moc>
This commit is contained in:
Ivailo Monev 2019-07-09 18:06:42 +00:00
parent 9c35f88a35
commit ea7d97bc55
2 changed files with 2 additions and 2 deletions

View file

@ -59,7 +59,7 @@ public:
QRegExp(); QRegExp();
explicit QRegExp(const QString &pattern, Qt::CaseSensitivity cs = Qt::CaseSensitive, explicit QRegExp(const QString &pattern, Qt::CaseSensitivity cs = Qt::CaseSensitive,
PatternSyntax syntax = RegExp); PatternSyntax syntax = RegExp);
QRegExp(const QRegExp &rx); QRegExp(const QRegExp &rx);
~QRegExp(); ~QRegExp();
QRegExp &operator=(const QRegExp &rx); QRegExp &operator=(const QRegExp &rx);

View file

@ -368,7 +368,7 @@ QString QStringList::join(const QString &sep) const
QString res; QString res;
if (totalLength == 0) if (totalLength == 0)
return res; return res;
res.reserve(totalLength); res.reserve(totalLength);
for (int i = 0; i < size(); ++i) { for (int i = 0; i < size(); ++i) {
if (i) if (i)