forked from qt-creator/qt-creator
It's always nullptr. Change-Id: Ia392b826f0afe8562b90b916722c374c5244d9aa Reviewed-by: Jarek Kobus <jaroslaw.kobus@qt.io>
19 lines
614 B
C++
19 lines
614 B
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
#include "annotationhighlighter.h"
|
|
|
|
using namespace Subversion;
|
|
using namespace Subversion::Internal;
|
|
|
|
SubversionAnnotationHighlighter::SubversionAnnotationHighlighter(const VcsBase::Annotation &annotation)
|
|
: VcsBase::BaseAnnotationHighlighter(annotation)
|
|
, m_blank(QLatin1Char(' '))
|
|
{}
|
|
|
|
QString SubversionAnnotationHighlighter::changeNumber(const QString &block) const
|
|
{
|
|
const int pos = block.indexOf(m_blank);
|
|
return pos > 1 ? block.left(pos) : QString();
|
|
}
|