Files
qt-creator/src/plugins/bazaar/annotationhighlighter.cpp

24 lines
782 B
C++
Raw Normal View History

// 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,
QTextDocument *document)
: VcsBase::BaseAnnotationHighlighter(annotation, document)
, 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