Warning, file /libraries/ktextaddons/textemoticons/widgets/emoticoncategorybutton.cpp was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 /*
0002   SPDX-FileCopyrightText: 2023-2024 Laurent Montel <montel.org>
0003 
0004   SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #include "emoticoncategorybutton.h"
0008 using namespace TextEmoticonsWidgets;
0009 EmoticonCategoryButton::EmoticonCategoryButton(QWidget *parent)
0010     : QToolButton(parent)
0011 {
0012     setCheckable(true);
0013     setAutoRaise(true);
0014 }
0015 
0016 EmoticonCategoryButton::~EmoticonCategoryButton() = default;
0017 
0018 #include "moc_emoticoncategorybutton.cpp"