File indexing completed on 2024-04-21 16:12:19

0001 // SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0002 // SPDX-FileCopyrightText: 2022 Harald Sitter <sitter@kde.org>
0003 
0004 #include "commentmodel.h"
0005 
0006 int CommentsModel::rowCount(const QModelIndex &parent) const
0007 {
0008     Q_UNUSED(parent)
0009     return m_list.size();
0010 }