diff options
Diffstat (limited to 'src/plugins/git/remotemodel.cpp')
-rw-r--r-- | src/plugins/git/remotemodel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/git/remotemodel.cpp b/src/plugins/git/remotemodel.cpp index 18eaaf8f394..4f0f6506dc0 100644 --- a/src/plugins/git/remotemodel.cpp +++ b/src/plugins/git/remotemodel.cpp @@ -39,10 +39,10 @@ namespace Internal { // Parse a branch line: " *name sha description". bool RemoteModel::Remote::parse(const QString &line) { - if (!line.endsWith(" (fetch)")) + if (!line.endsWith(QLatin1String(" (fetch)"))) return false; - QStringList tokens = line.split(QRegExp("\\s"), QString::SkipEmptyParts); + QStringList tokens = line.split(QRegExp(QLatin1String("\\s")), QString::SkipEmptyParts); if (tokens.count() != 3) return false; |