File indexing completed on 2024-12-15 04:54:37
0001 /****************************************************************************** 0002 * 0003 * SPDX-FileCopyrightText: 2008 Szymon Tomasz Stefanek <pragma@kvirc.net> 0004 * 0005 * SPDX-License-Identifier: GPL-2.0-or-later 0006 * 0007 *******************************************************************************/ 0008 0009 #include "core/groupheaderitem.h" 0010 0011 using namespace MessageList::Core; 0012 0013 GroupHeaderItem::GroupHeaderItem(const QString &label) 0014 : Item(GroupHeader) 0015 , mLabel(label) 0016 { 0017 } 0018 0019 GroupHeaderItem::~GroupHeaderItem() = default; 0020 0021 const QString &GroupHeaderItem::label() const 0022 { 0023 return mLabel; 0024 } 0025 0026 void GroupHeaderItem::setLabel(const QString &label) 0027 { 0028 mLabel = label; 0029 }