forked from qt-creator/qt-creator
Git: Replace QRegExp by QRegularExpression
Task-number: QTCREATORBUG-24098 Change-Id: I77a2e9959981b2e173142253baf1668d57982a2e Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
@@ -27,7 +27,7 @@
|
||||
|
||||
#include <vcsbase/vcsbaseeditor.h>
|
||||
|
||||
#include <QRegExp>
|
||||
#include <QRegularExpression>
|
||||
|
||||
namespace Utils { class FancyLineEdit; }
|
||||
|
||||
@@ -71,7 +71,7 @@ private:
|
||||
QString fileNameForLine(int line) const override;
|
||||
QString sourceWorkingDirectory() const;
|
||||
|
||||
mutable QRegExp m_changeNumberPattern;
|
||||
const QRegularExpression m_changeNumberPattern;
|
||||
GitLogFilterWidget *m_logFilterWidget = nullptr;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user