blob: 415876abca4252cd8ee3c61a134f320935d87d46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// Copyright (C) 2016 Brian McGillion
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#include "annotationhighlighter.h"
#include "constants.h"
namespace Mercurial::Internal {
MercurialAnnotationHighlighter::MercurialAnnotationHighlighter(const VcsBase::Annotation &annotation)
: VcsBase::BaseAnnotationHighlighter(annotation)
, changeset(QLatin1String(Constants::CHANGESETID12))
{
}
QString MercurialAnnotationHighlighter::changeNumber(const QString &block) const
{
const QRegularExpressionMatch match = changeset.match(block);
if (match.hasMatch())
return match.captured(1);
return {};
}
} // Mercurial::Internal
|