File indexing completed on 2024-05-05 04:39:18

0001 /*
0002     SPDX-FileCopyrightText: 2020 Friedrich W. H. Kossebau <kossebaukde.org>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #include "customchecksetconfigproxywidget.h"
0008 
0009 namespace Clazy
0010 {
0011 
0012 CustomCheckSetConfigProxyWidget::CustomCheckSetConfigProxyWidget(QWidget* parent)
0013     : QWidget(parent)
0014 {
0015 }
0016 
0017 CustomCheckSetConfigProxyWidget::~CustomCheckSetConfigProxyWidget() = default;
0018 
0019 QString CustomCheckSetConfigProxyWidget::checks() const
0020 {
0021     return m_checks;
0022 }
0023 
0024 void CustomCheckSetConfigProxyWidget::setChecks(const QString& checks)
0025 {
0026     if (m_checks == checks) {
0027         return;
0028     }
0029 
0030     m_checks = checks;
0031     emit checksChanged(m_checks);
0032 }
0033 
0034 }
0035 
0036 #include "moc_customchecksetconfigproxywidget.cpp"