OSDN Git Service

indentation
authorIvailo Monev <xakepa10@laimg.moc>
Tue, 9 Jul 2019 18:06:42 +0000 (18:06 +0000)
committerIvailo Monev <xakepa10@laimg.moc>
Tue, 9 Jul 2019 18:13:18 +0000 (18:13 +0000)
Signed-off-by: Ivailo Monev <xakepa10@laimg.moc>
src/core/tools/qregexp.h
src/core/tools/qstringlist.cpp

index 5015431..d6fa476 100644 (file)
@@ -59,7 +59,7 @@ public:
 
     QRegExp();
     explicit QRegExp(const QString &pattern, Qt::CaseSensitivity cs = Qt::CaseSensitive,
-                    PatternSyntax syntax = RegExp);
+                     PatternSyntax syntax = RegExp);
     QRegExp(const QRegExp &rx);
     ~QRegExp();
     QRegExp &operator=(const QRegExp &rx);
index 2e5ea95..d8252f2 100644 (file)
@@ -368,7 +368,7 @@ QString QStringList::join(const QString &sep) const
 
     QString res;
     if (totalLength == 0)
-       return res;
+        return res;
     res.reserve(totalLength);
     for (int i = 0; i < size(); ++i) {
         if (i)