aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/bazaar/annotationhighlighter.cpp
blob: e059ce23b143b40fa516f96a5d014e468d9b0571 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright (C) 2016 Hugues Delorme
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#include "annotationhighlighter.h"
#include "constants.h"

namespace Bazaar::Internal {

BazaarAnnotationHighlighter::BazaarAnnotationHighlighter(const VcsBase::Annotation &annotation)
    : VcsBase::BaseAnnotationHighlighter(annotation)
    , m_changeset(QLatin1String(Constants::ANNOTATE_CHANGESET_ID))
{}

QString BazaarAnnotationHighlighter::changeNumber(const QString &block) const
{
    const QRegularExpressionMatch match = m_changeset.match(block);
    if (match.hasMatch())
        return match.captured(1);
    return {};
}

} // Bazaar::Internal