mirror of https://github.com/qt/qtgraphs.git
15 lines
323 B
C++
15 lines
323 B
C++
// Copyright (C) 2023 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
|
|
#include "checkboxwrapper.h"
|
|
#include <QCheckBox>
|
|
|
|
CheckBoxWrapper::CheckBoxWrapper(QCheckBox *cb)
|
|
{
|
|
m_checkbox = cb;
|
|
}
|
|
|
|
void CheckBoxWrapper::setEnabled(int enabled)
|
|
{
|
|
m_checkbox->setEnabled(enabled);
|
|
}
|