VCS: Replace QRegExp with QRegularExpression in VcsBaseEditor

Change-Id: I8e8a6649e441597e29e88506d494ec69260bebd1
Reviewed-by: Samuel Gaist <samuel.gaist@idiap.ch>
Reviewed-by: André Hartmann <aha_1980@gmx.de>
This commit is contained in:
Orgad Shaneh
2020-02-19 23:26:24 +02:00
committed by Orgad Shaneh
parent e445f7aac3
commit a83f0c5d74
16 changed files with 102 additions and 93 deletions

View File

@@ -27,7 +27,7 @@
#include <vcsbase/vcsbaseeditor.h>
#include <QRegExp>
#include <QRegularExpression>
namespace Cvs {
namespace Internal {
@@ -45,8 +45,8 @@ private:
const QSet<QString> &changes) const override;
QStringList annotationPreviousVersions(const QString &revision) const override;
mutable QRegExp m_revisionAnnotationPattern;
mutable QRegExp m_revisionLogPattern;
const QRegularExpression m_revisionAnnotationPattern;
const QRegularExpression m_revisionLogPattern;
QString m_diffBaseDir;
};