summaryrefslogtreecommitdiffstats
path: root/tests/manual/surfacetest/checkboxwrapper.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/surfacetest/checkboxwrapper.cpp')
-rw-r--r--tests/manual/surfacetest/checkboxwrapper.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/manual/surfacetest/checkboxwrapper.cpp b/tests/manual/surfacetest/checkboxwrapper.cpp
new file mode 100644
index 00000000..37bd3ded
--- /dev/null
+++ b/tests/manual/surfacetest/checkboxwrapper.cpp
@@ -0,0 +1,14 @@
+// Copyright (C) 2022 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);
+}