File indexing completed on 2024-04-28 05:46:31

0001 /*
0002     SPDX-FileCopyrightText: 2010 Volker Lanz <vl@fidra.de>
0003 
0004     SPDX-License-Identifier: GPL-3.0-or-later
0005 */
0006 
0007 #include "gui/devicepropswidget.h"
0008 
0009 DevicePropsWidget::DevicePropsWidget(QWidget* parent) :
0010     QWidget(parent)
0011 {
0012     setupUi(this);
0013 }
0014 
0015 void DevicePropsWidget::hideTypeRadioButtons()
0016 {
0017     radioSectorBased().setVisible(false);
0018     radioCylinderBased().setVisible(false);
0019 }