blob: eaede4c11ec471bcc3db704a584977396e52caa8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Copyright (C) 2016 AudioCodes Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#include "annotationhighlighter.h"
namespace ClearCase::Internal {
ClearCaseAnnotationHighlighter::ClearCaseAnnotationHighlighter(const ChangeNumbers &changeNumbers,
QTextDocument *document) :
VcsBase::BaseAnnotationHighlighter(changeNumbers, document)
{ }
QString ClearCaseAnnotationHighlighter::changeNumber(const QString &block) const
{
const int pos = block.indexOf(m_separator);
return pos > 1 ? block.left(pos) : QString();
}
} // ClearCase::Internal
|