summaryrefslogtreecommitdiffstats
path: root/tests/manual/barstest/buttonwrapper.cpp
blob: c8eef0c777b1160479df2c30819326f1c74ebe6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#include "buttonwrapper.h"
#include <QPushButton>

ButtonWrapper::ButtonWrapper(QPushButton *button)
{
    m_button = button;
}

void ButtonWrapper::setEnabled(int state)
{
    m_button->setEnabled(state);
}