forked from qt-creator/qt-creator
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:
committed by
Orgad Shaneh
parent
e445f7aac3
commit
a83f0c5d74
@@ -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;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user