blob: 76d1ce61ed6f0641b0098d5441205e08ebab3e31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// 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 VcsBase::Annotation &annotation)
: VcsBase::BaseAnnotationHighlighter(annotation)
{}
QString ClearCaseAnnotationHighlighter::changeNumber(const QString &block) const
{
const int pos = block.indexOf(m_separator);
return pos > 1 ? block.left(pos) : QString();
}
} // namespace ClearCase::Internal
|